mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 21:59:54 -06:00
6 lines
220 B
CMake
6 lines
220 B
CMake
enable_language(CXX)
|
|
add_library(ObjectLibDependency OBJECT test.cpp)
|
|
|
|
add_library(TestUnknownLibWithoutSources UNKNOWN IMPORTED)
|
|
target_sources(TestUnknownLibWithoutSources PUBLIC $<TARGET_OBJECTS:ObjectLibDependency>)
|