mirror of
https://github.com/reactos/CMake.git
synced 2024-12-12 22:05:57 +00:00
6 lines
208 B
CMake
6 lines
208 B
CMake
enable_language(CXX)
|
|
add_library(ObjectLibDependency OBJECT test.cpp)
|
|
|
|
add_library(TestObjectLibWithoutSources OBJECT)
|
|
target_sources(TestObjectLibWithoutSources PUBLIC $<TARGET_OBJECTS:ObjectLibDependency>)
|