blob: 187481a140c2b120d9e1f2f073d5185f9437c4ea (
plain)
1
2
3
4
5
|
enable_language(CXX)
add_library(ObjectLibDependency OBJECT test.cpp)
add_library(TestModuleLibWithoutSources MODULE)
target_sources(TestModuleLibWithoutSources PUBLIC $<TARGET_OBJECTS:ObjectLibDependency>)
|