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.
24 lines
460 B
24 lines
460 B
enable_language(CXX)
|
|
|
|
add_library(install-bmi)
|
|
target_sources(install-bmi
|
|
PRIVATE
|
|
sources/cxx-anchor.cxx)
|
|
|
|
install(TARGETS install-bmi
|
|
CXX_MODULES_BMI
|
|
DESTINATION "lib/bmi"
|
|
COMPONENT "bmi")
|
|
|
|
install(TARGETS install-bmi
|
|
CXX_MODULES_BMI
|
|
DESTINATION "lib/bmi"
|
|
EXCLUDE_FROM_ALL
|
|
COMPONENT "bmi-optional")
|
|
|
|
install(TARGETS install-bmi
|
|
CXX_MODULES_BMI
|
|
DESTINATION "lib/bmi"
|
|
CONFIGURATIONS Debug
|
|
COMPONENT "bmi-only-debug")
|