CMake/Tests/ConfigSources/CMakeLists.txt

10 lines
165 B
CMake

cmake_minimum_required(VERSION 3.0)
project(ConfigSources)
add_executable(ConfigSources
$<$<CONFIG:Debug>:main.cpp>
$<$<CONFIG:Release>:does_not_exist.cpp>
)