Sign in
cmake
/
cmake
/
39e5a4da220c1ddcd73d74d26ed55a7418add215
/
.
/
Tests
/
RunCMake
/
add_library
/
INTERFACEwithNoSourcesButLinkObjects.cmake
blob: 53a48f0bd7059dd911de495c265e998696cc312d [
file
] [
log
] [
blame
]
enable_language
(
CXX
)
add_library
(
ObjectLibDependency
OBJECT test
.
cpp
)
add_library
(
TestInterfaceLibWithoutSources
INTERFACE
)
target_link_libraries
(
TestInterfaceLibWithoutSources
INTERFACE $
<
TARGET_OBJECTS
:
ObjectLibDependency
>)