mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-28 20:04:10 +00:00
6 lines
192 B
CMake
6 lines
192 B
CMake
enable_language(CXX)
|
|
add_library(ObjectLibDependency OBJECT test.cpp)
|
|
|
|
add_executable(TestExeWithoutSources)
|
|
target_sources(TestExeWithoutSources PUBLIC $<TARGET_OBJECTS:ObjectLibDependency>)
|