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.
15 lines
373 B
15 lines
373 B
include(FeatureSummary)
|
|
|
|
set(WITH_FOO 1)
|
|
set(WITH_BAR 1)
|
|
|
|
add_feature_info(Foo WITH_FOO "Foo.")
|
|
add_feature_info(Bar WITH_BAR "Bar.")
|
|
|
|
feature_summary(WHAT ENABLED_FEATURES
|
|
DESCRIPTION "Enabled features:"
|
|
QUIET_ON_EMPTY)
|
|
feature_summary(WHAT DISABLED_FEATURES
|
|
DESCRIPTION "Disabled features:"
|
|
QUIET_ON_EMPTY)
|