Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
e1fed863cd248dc9dfd3804ed78debc5fc50b532
/
.
/
Tests
/
RunCMake
/
ObjectLibrary
/
LinkObjLHSStatic.cmake
blob: 261bee7812bc93de808c1d940cf99697e29ad434 [
file
]
project
(
LinkObjLHSStatic
C
)
add_library
(
OtherLib
STATIC a
.
c
)
target_compile_definitions
(
OtherLib
INTERFACE REQUIRED
)
add_library
(
AnObjLib
OBJECT requires
.
c
)
target_link_libraries
(
AnObjLib
OtherLib
)