Sign in
cmake
/
cmake
/
39e5a4da220c1ddcd73d74d26ed55a7418add215
/
.
/
Tests
/
RunCMake
/
ObjectLibrary
/
LinkObjLHSStatic.cmake
blob: 261bee7812bc93de808c1d940cf99697e29ad434 [
file
] [
log
] [
blame
]
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
)