mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 11:22:21 -06:00
6 lines
199 B
CMake
6 lines
199 B
CMake
enable_language(CXX)
|
|
add_library(ObjectLibDependency OBJECT test.cpp)
|
|
|
|
add_executable(TestExeWithoutSources)
|
|
target_link_libraries(TestExeWithoutSources PUBLIC $<TARGET_OBJECTS:ObjectLibDependency>)
|