You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
716 B
22 lines
716 B
6 years ago
|
|
||
|
enable_language(C)
|
||
|
|
||
|
set(obj "${CMAKE_C_OUTPUT_EXTENSION}")
|
||
|
if(BORLAND)
|
||
|
set(pre -)
|
||
|
endif()
|
||
|
|
||
|
add_library(StaticLinkOptions STATIC LinkOptionsLib.c)
|
||
|
set_property(TARGET StaticLinkOptions PROPERTY STATIC_LIBRARY_OPTIONS ${pre}BADFLAG${obj})
|
||
|
|
||
|
# static library with generator expression
|
||
|
add_library(StaticLinkOptions_genex STATIC LinkOptionsLib.c)
|
||
|
set_property(TARGET StaticLinkOptions_genex PROPERTY STATIC_LIBRARY_OPTIONS
|
||
|
$<$<CONFIG:Release>:${pre}BADFLAG_RELEASE${obj}>
|
||
|
"SHELL:" # produces no options
|
||
|
)
|
||
|
|
||
|
# shared library do not use property STATIC_LIBRARY_OPTIONS
|
||
|
add_library(SharedLinkOptions SHARED LinkOptionsLib.c)
|
||
|
set_property(TARGET SharedLinkOptions PROPERTY STATIC_LIBRARY_OPTIONS ${pre}BADFLAG${obj})
|