8 lines
145 B
CMake
8 lines
145 B
CMake
|
|
||
|
enable_language(C)
|
||
|
|
||
|
add_library(lib empty.c)
|
||
|
|
||
|
add_executable(empty empty.c)
|
||
|
set_property(TARGET empty PROPERTY LINK_DEPENDS $<DEVICE_LINK:lib>)
|