mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-06 23:29:31 -06:00
6 lines
208 B
CMake
6 lines
208 B
CMake
enable_language(CXX)
|
|
add_library(ObjectLibDependency OBJECT test.cpp)
|
|
|
|
add_library(TestStaticLibWithoutSources STATIC)
|
|
target_sources(TestStaticLibWithoutSources PUBLIC $<TARGET_OBJECTS:ObjectLibDependency>)
|