https://github.com/Kitware/CMake
Raw File
Tip revision: 95cce32470b9fbddf3b6f4bd0d186ec5efe50371 authored by Brad King on 07 July 2022, 15:02:54 UTC
CMake 3.24.0-rc3
Tip revision: 95cce32
per_config_c.cmake
enable_language(C)

add_executable(per_config_c per_config_c.c
  "$<$<CONFIG:Debug>:per_config_c_debug.c>"
  "$<$<NOT:$<CONFIG:Debug>>:per_config_c_other.c>"
  )

set_target_properties(per_config_c PROPERTIES UNITY_BUILD ON)
target_compile_definitions(per_config_c PRIVATE
  "$<$<CONFIG:Debug>:CFG_DEBUG>"
  "$<$<NOT:$<CONFIG:Debug>>:CFG_OTHER>"
  )
back to top