2021-06-11 12:38:03 +03:00
|
|
|
include(FeatureSummary)
|
2012-11-03 03:27:01 +04:00
|
|
|
|
|
|
|
# types: DISABLED < RUNTIME < OPTIONAL < RECOMMENDED < REQUIRED
|
|
|
|
|
|
|
|
macro(find_feature _feature _type _purpose _description)
|
|
|
|
|
|
|
|
string(TOUPPER ${_feature} _feature_upper)
|
|
|
|
string(TOLOWER ${_type} _type_lower)
|
|
|
|
|
|
|
|
if(${_type} STREQUAL "DISABLED")
|
|
|
|
set(_feature_default "OFF")
|
|
|
|
message(STATUS "Skipping ${_type_lower} feature ${_feature} for ${_purpose} (${_description})")
|
|
|
|
else()
|
|
|
|
if(${_type} STREQUAL "REQUIRED")
|
|
|
|
set(_feature_default "ON")
|
|
|
|
message(STATUS "Finding ${_type_lower} feature ${_feature} for ${_purpose} (${_description})")
|
|
|
|
find_package(${_feature} REQUIRED)
|
|
|
|
elseif(${_type} STREQUAL "RECOMMENDED")
|
|
|
|
if(NOT ${WITH_${_feature_upper}})
|
|
|
|
set(_feature_default "OFF")
|
|
|
|
message(STATUS "Skipping ${_type_lower} feature ${_feature} for ${_purpose} (${_description})")
|
|
|
|
else()
|
|
|
|
set(_feature_default "ON")
|
|
|
|
message(STATUS "Finding ${_type_lower} feature ${_feature} for ${_purpose} (${_description})")
|
|
|
|
message(STATUS " Disable feature ${_feature} using \"-DWITH_${_feature_upper}=OFF\"")
|
|
|
|
find_package(${_feature})
|
2023-03-11 14:16:59 +03:00
|
|
|
if (NOT ${_feature}_FOUND)
|
|
|
|
set(_feature_default "OFF")
|
|
|
|
message(STATUS "Not detected ${_type_lower} feature ${_feature} for ${_purpose} (${_description}), feature disabled")
|
|
|
|
endif()
|
2012-11-03 03:27:01 +04:00
|
|
|
endif()
|
|
|
|
elseif(${_type} STREQUAL "OPTIONAL")
|
|
|
|
if(${WITH_${_feature_upper}})
|
|
|
|
set(_feature_default "ON")
|
|
|
|
message(STATUS "Finding ${_type_lower} feature ${_feature} for ${_purpose} (${_description})")
|
|
|
|
find_package(${_feature} REQUIRED)
|
|
|
|
else()
|
|
|
|
set(_feature_default "OFF")
|
|
|
|
message(STATUS "Skipping ${_type_lower} feature ${_feature} for ${_purpose} (${_description})")
|
2013-02-19 21:29:15 +04:00
|
|
|
message(STATUS " Enable feature ${_feature} using \"-DWITH_${_feature_upper}=ON\"")
|
2012-11-03 03:27:01 +04:00
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
set(_feature_default "ON")
|
|
|
|
message(STATUS "Finding ${_type_lower} feature ${_feature} for ${_purpose} (${_description})")
|
|
|
|
find_package(${_feature})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
2023-12-14 16:01:39 +03:00
|
|
|
if(NOT ${${_feature}_FOUND})
|
2012-11-03 03:27:01 +04:00
|
|
|
if(${_feature_default})
|
2023-12-14 16:01:39 +03:00
|
|
|
message(WARNING " feature ${_feature} was requested but could not be found! ${_feature_default} / ${${_feature}_FOUND}")
|
2012-11-03 03:27:01 +04:00
|
|
|
endif()
|
|
|
|
set(_feature_default "OFF")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
option(WITH_${_feature_upper} "Enable feature ${_feature} for ${_purpose}" ${_feature_default})
|
|
|
|
|
|
|
|
set_package_properties(${_feature} PROPERTIES
|
|
|
|
TYPE ${_type}
|
|
|
|
PURPOSE "${_purpose}"
|
|
|
|
DESCRIPTION "${_description}")
|
|
|
|
endif()
|
|
|
|
endmacro(find_feature)
|
|
|
|
|