OBJECTwithOnlyObjectSources.cmake 208 B

12345
  1. enable_language(CXX)
  2. add_library(ObjectLibDependency OBJECT test.cpp)
  3. add_library(TestObjectLibWithoutSources OBJECT)
  4. target_sources(TestObjectLibWithoutSources PUBLIC $<TARGET_OBJECTS:ObjectLibDependency>)