blob: 86fab1dee4c900de6f9cd7128fb3654131344496 (
plain)
1
2
3
4
5
|
enable_language(CXX)
add_library(ObjectLibDependency OBJECT test.cpp)
add_library(TestInterfaceLibWithoutSources INTERFACE)
target_sources(TestInterfaceLibWithoutSources INTERFACE $<TARGET_OBJECTS:ObjectLibDependency>)
|