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.
14 lines
380 B
14 lines
380 B
2 years ago
|
|
||
|
enable_language(C)
|
||
|
|
||
|
add_library(External SHARED "${CMAKE_CURRENT_BINARY_DIR}/external.c")
|
||
|
|
||
|
file(GENERATE OUTPUT "${CMAKE_BINARY_DIR}/ExternalLibrary-$<LOWER_CASE:$<CONFIG>>.cmake"
|
||
|
CONTENT "set(EXTERNAL_LIBRARY \"$<TARGET_LINKER_FILE:External>\")\n")
|
||
|
|
||
|
|
||
|
file(GENERATE OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/check-$<LOWER_CASE:$<CONFIG>>.cmake"
|
||
|
CONTENT "
|
||
|
# no required actions
|
||
|
")
|