mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 14:48:19 -05:00
6 lines
147 B
CMake
6 lines
147 B
CMake
|
|
add_library(iface INTERFACE)
|
|
target_link_libraries(iface INTERFACE External::Library)
|
|
add_library(foo empty.cpp)
|
|
target_link_libraries(foo iface)
|