mirror of
https://github.com/Kitware/CMake.git
synced 2025-12-31 19:00:54 -06: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>)
|