You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cmake/Tests/RunCMake/ExcludeFromAll/error-on-mixed-config.cmake

7 lines
217 B

enable_language(C)
set(CMAKE_CONFIGURATION_TYPES "Release;Debug" CACHE STRING "")
add_executable(release_only_tool main.c)
set_property(TARGET release_only_tool PROPERTY EXCLUDE_FROM_ALL "$<NOT:$<CONFIG:Release>>")