2014-02-13 20:25:00 +04:00
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 3.0)
|
|
|
|
|
|
|
|
project(ConfigSources)
|
|
|
|
|
2014-02-13 23:52:21 +04:00
|
|
|
add_library(iface INTERFACE)
|
|
|
|
set_property(TARGET iface PROPERTY INTERFACE_SOURCES
|
|
|
|
iface_src.cpp
|
|
|
|
$<$<CONFIG:Debug>:iface_debug_src.cpp>
|
|
|
|
$<$<CONFIG:Release>:does_not_exist.cpp>
|
|
|
|
)
|
|
|
|
|
2014-02-13 20:25:00 +04:00
|
|
|
add_executable(ConfigSources
|
|
|
|
$<$<CONFIG:Debug>:main.cpp>
|
|
|
|
$<$<CONFIG:Release>:does_not_exist.cpp>
|
|
|
|
)
|
2014-02-13 23:52:21 +04:00
|
|
|
target_link_libraries(ConfigSources iface)
|