mirror of
https://github.com/reactos/CMake.git
synced 2024-12-13 14:27:23 +00:00
6 lines
215 B
CMake
6 lines
215 B
CMake
enable_language(CXX)
|
|
add_library(ObjectLibDependency OBJECT test.cpp)
|
|
|
|
add_library(TestModuleLibWithoutSources MODULE)
|
|
target_link_libraries(TestModuleLibWithoutSources PUBLIC $<TARGET_OBJECTS:ObjectLibDependency>)
|