CMakeLists.txt 165 B

123456789
  1. cmake_minimum_required(VERSION 3.0)
  2. project(ConfigSources)
  3. add_executable(ConfigSources
  4. $<$<CONFIG:Debug>:main.cpp>
  5. $<$<CONFIG:Release>:does_not_exist.cpp>
  6. )