mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
Many users will want to use the Ninja Multi-Config generator like a traditional Visual Studio-style multi-config generator, which doesn't mix configurations - custom commands are built using target executables of the same configuration the command is for. We do not want to force these people to generate an N*N build matrix when they only need N*1, especially if they have lots of targets. Add a new variable, CMAKE_NINJA_CROSS_CONFIG_ENABLE, to opt-in to the cross-config build matrix.
33 lines
1.0 KiB
CMake
33 lines
1.0 KiB
CMake
check_files("${RunCMake_TEST_BINARY_DIR}"
|
|
INCLUDE
|
|
${GENERATED_FILES}
|
|
|
|
${TARGET_FILE_simpleexe_Debug}
|
|
${TARGET_OBJECT_FILES_simpleexe_Debug}
|
|
|
|
${TARGET_FILE_simpleshared_Debug}
|
|
${TARGET_LINKER_FILE_simpleshared_Debug}
|
|
${TARGET_OBJECT_FILES_simpleshared_Debug}
|
|
|
|
${TARGET_FILE_simplestatic_Debug}
|
|
${TARGET_OBJECT_FILES_simplestatic_Debug}
|
|
|
|
${TARGET_OBJECT_FILES_simpleobj_Debug}
|
|
|
|
EXCLUDE
|
|
${TARGET_OBJECT_FILES_simpleexe_Release}
|
|
${TARGET_OBJECT_FILES_simpleshared_Release}
|
|
${TARGET_OBJECT_FILES_simplestatic_Release}
|
|
${TARGET_OBJECT_FILES_simpleobj_Release}
|
|
|
|
${TARGET_OBJECT_FILES_simpleexe_MinSizeRel}
|
|
${TARGET_OBJECT_FILES_simpleshared_MinSizeRel}
|
|
${TARGET_OBJECT_FILES_simplestatic_MinSizeRel}
|
|
${TARGET_OBJECT_FILES_simpleobj_MinSizeRel}
|
|
|
|
${TARGET_OBJECT_FILES_simpleexe_RelWithDebInfo}
|
|
${TARGET_OBJECT_FILES_simpleshared_RelWithDebInfo}
|
|
${TARGET_OBJECT_FILES_simplestatic_RelWithDebInfo}
|
|
${TARGET_OBJECT_FILES_simpleobj_RelWithDebInfo}
|
|
)
|