mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-28 01:49:23 -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)
|