mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 13:20:47 -06:00
This allows for setting EXCLUDE_FROM_ALL, conditional on the build configuration. However, only the Ninja Multi-Config generator supports different property values per config. All other multi-config generators will yield an error in that situation. Fixes: #20923
10 lines
251 B
CMake
10 lines
251 B
CMake
check_files("${RunCMake_TEST_BINARY_DIR}"
|
|
INCLUDE
|
|
${TARGET_FILE_release_only_tool_Release}
|
|
${TARGET_EXE_FILE_release_only_tool_Release}
|
|
|
|
EXCLUDE
|
|
${TARGET_FILE_release_only_tool_Debug}
|
|
${TARGET_EXE_FILE_release_only_tool_Debug}
|
|
)
|