Sign in
chromium
/
external
/
github.com
/
Kitware
/
CMake
/
refs/heads/release
/
.
/
Tests
/
RunCMake
/
add_library
/
STATICwithNoSourcesButLinkObjects.cmake
blob: b6e137f3a168678907ad9911dcedaf2db9bd1945 [
file
] [
log
] [
blame
] [
edit
]
enable_language
(
CXX
)
add_library
(
ObjectLibDependency
OBJECT test
.
cpp
)
add_library
(
TestStaticLibWithoutSources
STATIC
)
target_link_libraries
(
TestStaticLibWithoutSources
PUBLIC $
<
TARGET_OBJECTS
:
ObjectLibDependency
>)