INTERFACEwithNoSourcesButLinkObjects.cmake 227 B

12345
  1. enable_language(CXX)
  2. add_library(ObjectLibDependency OBJECT test.cpp)
  3. add_library(TestInterfaceLibWithoutSources INTERFACE)
  4. target_link_libraries(TestInterfaceLibWithoutSources INTERFACE $<TARGET_OBJECTS:ObjectLibDependency>)