7 lines
139 B
CMake
7 lines
139 B
CMake
|
|
||
|
add_library(iface INTERFACE)
|
||
|
target_sources(iface INTERFACE empty_1.cpp)
|
||
|
|
||
|
add_executable(main main.cpp)
|
||
|
target_link_libraries(main iface)
|