blob: 74a8947f2c74428b021c0d7238232226bb42bc6f (
plain)
1
2
3
4
5
|
enable_language(CXX)
add_library(ObjectLibDependency OBJECT test.cpp)
add_library(TestStaticLibWithoutSources STATIC)
target_sources(TestStaticLibWithoutSources PUBLIC $<TARGET_OBJECTS:ObjectLibDependency>)
|