1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
|
# (C) Copyright 2011- ECMWF.
#
# This software is licensed under the terms of the Apache Licence Version 2.0
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
# In applying this licence, ECMWF does not waive the privileges and immunities
# granted to it by virtue of its status as an intergovernmental organisation nor
# does it submit to any jurisdiction.
##############################################################################
#.rst:
#
# ecbuild_add_option
# ==================
#
# Add a CMake configuration option, which may depend on a list of packages. ::
#
# ecbuild_add_option( FEATURE <name>
# [ DEFAULT ON|OFF ]
# [ DESCRIPTION <description> ]
# [ REQUIRED_PACKAGES <package1> [<package2> ...] ]
# [ CONDITION <condition> ]
# [ ADVANCED ] [ NO_TPL ] )
#
# Options
# -------
#
# FEATURE : required
# name of the feature / option
#
# DEFAULT : optional, defaults to ON
# if set to ON, the feature is enabled even if not explicitly requested
#
# DESCRIPTION : optional
# string describing the feature (shown in summary and stored in the cache)
#
# REQUIRED_PACKAGES : optional
# list of packages required to be found for this feature to be enabled
#
# Every item in the list should be a valid argument list for
# ``ecbuild_find_package``, e.g.::
#
# "NAME <package> [VERSION <version>] [...]"
#
# .. note::
#
# Arguments inside the package string that require quoting need to use the
# `bracket argument syntax`_ introduced in CMake 3.0 since
# regular quotes even when escaped are swallowed by the CMake parser.
#
# Alternatively, the name of a CMake variable containing the string can be
# passed, which will be expanded by ``ecbuild_find_package``: ::
#
# set( ECCODES_FAIL_MSG
# "grib_api can be used instead (select with -DENABLE_ECCODES=OFF)" )
# ecbuild_add_option( FEATURE ECCODES
# DESCRIPTION "Use eccodes instead of grib_api"
# REQUIRED_PACKAGES "NAME eccodes REQUIRED FAILURE_MSG ECCODES_FAIL_MSG"
# DEFAULT ON )
#
# CONDITION : optional
# conditional expression which must evaluate to true for this option to be
# enabled (must be valid in a CMake ``if`` statement)
#
# ADVANCED : optional
# mark the feature as advanced
#
# NO_TPL : optional
# do not add any ``REQUIRED_PACKAGES`` to the list of third party libraries
#
# Usage
# -----
#
# Features with ``DEFAULT OFF`` need to be explcitly enabled by the user with
# ``-DENABLE_<FEATURE>=ON``. If a feature is enabled, all ``REQUIRED_PACKAGES``
# are found and ``CONDITION`` is met, ecBuild sets the variable
# ``HAVE_<FEATURE>`` to ``ON``. This is the variable to use to check for the
# availability of the feature.
#
# If a feature is explicitly enabled but the required packages are not found,
# configuration fails. This only applies when configuring from *clean cache*.
# With an already populated cache, use ``-DENABLE_<FEATURE>=REQUIRE`` to make
# the feature a required feature (this cannot be done via the CMake GUI).
#
# .. _bracket argument syntax: https://cmake.org/cmake/help/latest/manual/cmake-language.7.html#bracket-argument
#
##############################################################################
macro( ecbuild_add_option )
set( options ADVANCED NO_TPL )
set( single_value_args FEATURE DEFAULT DESCRIPTION TYPE PURPOSE )
set( multi_value_args REQUIRED_PACKAGES CONDITION )
cmake_parse_arguments( _p "${options}" "${single_value_args}" "${multi_value_args}" ${_FIRST_ARG} ${ARGN} )
#
# Policy CMP0077 set to NEW, to avoid warning and allow disregarding
# the cache variable ENABLE_<FEATURE> if it is not set by the user
#
cmake_policy(SET CMP0077 NEW)
if( _p_UNPARSED_ARGUMENTS )
ecbuild_critical("Unknown keywords given to ecbuild_add_option(): \"${_p_UNPARSED_ARGUMENTS}\"")
endif()
# check FEATURE parameter
if( NOT _p_FEATURE )
ecbuild_critical("The call to ecbuild_add_option() doesn't specify the FEATURE.")
endif()
# check DEFAULT parameter
if( NOT DEFINED _p_DEFAULT )
set( _p_DEFAULT ON )
else()
if( NOT _p_DEFAULT MATCHES "[Oo][Nn]" AND NOT _p_DEFAULT MATCHES "[Oo][Ff][Ff]" )
ecbuild_critical("In macro ecbuild_add_option(), DEFAULT must be either ON or OFF, but found: \"${_p_DEFAULT}\"")
endif()
endif()
ecbuild_debug("ecbuild_add_option(${_p_FEATURE}): defaults to ${_p_DEFAULT}")
if( _p_PURPOSE )
ecbuild_deprecate( "ecbuild_add_option: argument PURPOSE is ignored and will be removed in a future release." )
endif()
if( _p_TYPE )
ecbuild_deprecate( "ecbuild_add_option: argument TYPE is ignored and will be removed in a future release." )
endif()
# check CONDITION parameter
ecbuild_evaluate_dynamic_condition( _p_CONDITION _${_p_FEATURE}_condition )
# Disable deprecation warnings until end of macro, because "ENABLE_<FEATURE>" may already have been
# marked with "ecbuild_mark_compat()" in a bundle.
if( ECBUILD_2_COMPAT )
set( DISABLE_ECBUILD_DEPRECATION_WARNINGS_orig ${DISABLE_ECBUILD_DEPRECATION_WARNINGS} )
set( DISABLE_ECBUILD_DEPRECATION_WARNINGS ON )
endif()
# Check if user explicitly enabled/disabled the feature in cache
get_property( _in_cache CACHE ENABLE_${_p_FEATURE} PROPERTY VALUE SET )
# ***Important***
#
# In order to support options in multi-project scenarios, and allow the user to
# reconfigure the project with a different set of options, we need to precompute
# and store the value of the user provided option.
#
# This is done by creating a new variable <PROJECT_NAME>_ENABLE_<FEATURE>_defined_value.
# This variable is used to store the value of ENABLE_<FEATURE> when the user provides it.
# This is done to avoid overwriting the cache value of ENABLE_<FEATURE> when the user
# provides a different value for the same option in a different project.
#
if ( NOT DEFINED ${PROJECT_NAME}_ENABLE_${_p_FEATURE}_defined_value )
if ( DEFINED ENABLE_${_p_FEATURE} )
# When the user provides a value for ENABLE_<FEATURE>, we cache it
# in a new variable <PROJECT_NAME>_ENABLE_<FEATURE>_defined_value
set ( ${PROJECT_NAME}_ENABLE_${_p_FEATURE}_defined_value ${ENABLE_${_p_FEATURE}} CACHE INTERNAL "" FORCE )
else()
# When the user does not provide a value for ENABLE_<FEATURE>,
# we set the default value of ENABLE_<FEATURE> to the default value
# of the feature.
set ( ${PROJECT_NAME}_ENABLE_${_p_FEATURE}_defined_value ${_p_DEFAULT} CACHE INTERNAL "" FORCE )
endif()
else()
if ( DEFINED ENABLE_${_p_FEATURE} )
# When the user provides a value for ENABLE_<FEATURE>, we cache it
# in a new variable <PROJECT_NAME>_ENABLE_<FEATURE>_defined_value.
set ( ${PROJECT_NAME}_ENABLE_${_p_FEATURE}_defined_value ${ENABLE_${_p_FEATURE}} CACHE INTERNAL "" FORCE )
endif()
endif()
# The project/user-provided specific of the feature value is used to set the value of
# ENABLE_<FEATURE> in the current project.
set ( ENABLE_${_p_FEATURE} ${${PROJECT_NAME}_ENABLE_${_p_FEATURE}_defined_value} )
if( ENABLE_${_p_FEATURE} MATCHES "REQUIRE" )
#
# User explicitly marked the feature as REQUIREd
#
ecbuild_debug("ecbuild_add_option(${_p_FEATURE}): ENABLE_${_p_FEATURE} was required")
set( ENABLE_${_p_FEATURE} ON CACHE BOOL "" FORCE )
set( ${_p_FEATURE}_user_provided_input 1 CACHE INTERNAL "" FORCE )
elseif( NOT ENABLE_${_p_FEATURE} STREQUAL "" AND _in_cache )
#
# User explicitly defined the value of the feature
# The user can set feature to either ON or OFF; and this is cached so it doesn't revert back to the default
#
ecbuild_debug("ecbuild_add_option(${_p_FEATURE}): ENABLE_${_p_FEATURE} was found in cache, updating to ENABLE_${_p_FEATURE}=${ENABLE_${_p_FEATURE}}")
set( ENABLE_${_p_FEATURE} ${ENABLE_${_p_FEATURE}} CACHE BOOL "" FORCE )
set( ${_p_FEATURE}_user_provided_input 1 CACHE INTERNAL "" FORCE )
else()
#
# No user explicit value provided; the default value is used
#
ecbuild_debug("ecbuild_add_option(${_p_FEATURE}): ENABLE_${_p_FEATURE} not found in cache")
set( ${_p_FEATURE}_user_provided_input 0 CACHE INTERNAL "" )
endif()
# define the option -- for cmake GUI
option( ENABLE_${_p_FEATURE} "${_p_DESCRIPTION}" ${ENABLE_${_p_FEATURE}} )
ecbuild_debug("ecbuild_add_option(${_p_FEATURE}): defining option ENABLE_${_p_FEATURE} '${_p_DESCRIPTION}' ${_p_DEFAULT}")
ecbuild_debug("ecbuild_add_option(${_p_FEATURE}): ENABLE_${_p_FEATURE}=${ENABLE_${_p_FEATURE}}")
# Allow override of ENABLE_<FEATURE> with <PNAME>_ENABLE_<FEATURE> (see ECBUILD-486)
if( DEFINED ${PNAME}_ENABLE_${_p_FEATURE} )
ecbuild_debug("ecbuild_add_option(${_p_FEATURE}): found ${PNAME}_ENABLE_${_p_FEATURE}=${${PNAME}_ENABLE_${_p_FEATURE}}")
# Cache it for future reconfiguration
set( ${PNAME}_ENABLE_${_p_FEATURE} ${${PNAME}_ENABLE_${_p_FEATURE}} CACHE BOOL "Override for ENABLE_${_p_FEATURE}" )
# Warn when user provides both ENABLE_<FEATURE> and <PNAME>_ENABLE_<FEATURE>, and explain precedence
if( ${_p_FEATURE}_user_provided_input )
ecbuild_warn( "Both ENABLE_${_p_FEATURE} and ${PNAME}_ENABLE_${_p_FEATURE} are set for feature ${_p_FEATURE}."
"Using ${PNAME}_ENABLE_${_p_FEATURE}=${${PNAME}_ENABLE_${_p_FEATURE}}" )
endif()
# Non-cache (hard) override of ENABLE_<FEATURE> within this project scope only
set( ENABLE_${_p_FEATURE} ${${PNAME}_ENABLE_${_p_FEATURE}} )
ecbuild_debug("ecbuild_add_option(${_p_FEATURE}): set ENABLE_${_p_FEATURE} from ${PNAME}_ENABLE_${_p_FEATURE}")
ecbuild_debug("ecbuild_add_option(${_p_FEATURE}): ENABLE_${_p_FEATURE}=${ENABLE_${_p_FEATURE}}")
endif()
## Update the description of the feature summary
# Choose the correct tick
if (ENABLE_${_p_FEATURE})
set ( _tick "ON")
else()
set ( _tick "OFF")
endif()
set(_enabled "${ENABLE_${_p_FEATURE}}")
get_property( _enabled_features GLOBAL PROPERTY ENABLED_FEATURES )
if( "${_p_FEATURE}" IN_LIST _enabled_features )
set(_enabled ON)
endif()
set( ${PROJECT_NAME}_HAVE_${_p_FEATURE} 0 )
if( ENABLE_${_p_FEATURE} )
ecbuild_debug("ecbuild_add_option(${_p_FEATURE}): feature requested to be enabled")
set( ${PROJECT_NAME}_HAVE_${_p_FEATURE} 1 )
if( _${_p_FEATURE}_condition )
### search for dependent packages
set( _failed_to_find_packages ) # clear variable
foreach( pkg ${_p_REQUIRED_PACKAGES} )
ecbuild_debug("ecbuild_add_option(${_p_FEATURE}): searching for dependent package ${pkg}")
string(REPLACE " " ";" pkglist ${pkg}) # string to list
list(GET pkglist 0 pkgfirst)
if( ECBUILD_2_COMPAT )
if( pkgfirst STREQUAL "PROJECT" )
if( ECBUILD_2_COMPAT_DEPRECATE )
ecbuild_deprecate("Arguments to ecbuild_add_option(REQUIRED_PACKAGES) "
"should be valid arguments for ecbuild_find_package")
endif()
list(GET pkglist 1 pkgname)
elseif( pkgfirst STREQUAL "NAME" )
list(GET pkglist 1 pkgname)
else()
set(pkgname ${pkgfirst})
endif()
if(${_p_NO_TPL})
set(_no_tpl NO_TPL)
else()
set(_no_tpl)
endif()
ecbuild_compat_require(pkgname ${pkg} ${_no_tpl} FEATURE "${_p_FEATURE}" DESCRIPTION "${_p_DESCRIPTION}")
elseif( pkgfirst STREQUAL "NAME" )
list(GET pkglist 1 pkgname)
ecbuild_find_package(${pkglist})
else()
set(pkgname ${pkgfirst})
ecbuild_find_package(${pkglist})
endif()
# we have feature if all required packages were FOUND
if( ${pkgname}_FOUND )
ecbuild_info( "Found package ${pkgname} required for feature ${_p_FEATURE}" )
else()
ecbuild_info( "Could NOT find package ${pkgname} required for feature ${_p_FEATURE} -- ${${pkgname}_HELP_MSG}" )
set( ${PROJECT_NAME}_HAVE_${_p_FEATURE} 0 )
list( APPEND _failed_to_find_packages ${pkgname} )
endif()
endforeach()
else( _${_p_FEATURE}_condition )
set( ${PROJECT_NAME}_HAVE_${_p_FEATURE} 0 )
endif( _${_p_FEATURE}_condition )
# FINAL CHECK
if( ${PROJECT_NAME}_HAVE_${_p_FEATURE} )
ecbuild_enable_feature( ${_p_FEATURE} )
ecbuild_info( "Feature ${_p_FEATURE} enabled" )
else() # if user provided input and we cannot satisfy FAIL otherwise WARN
ecbuild_disable_unused_feature( ${_p_FEATURE} )
# Determine if a project-specific feature was requested
set ( _project_specific_feature_requested OFF )
if (DEFINED ${PNAME}_ENABLE_${_p_FEATURE} AND ${PNAME}_ENABLE_${_p_FEATURE} MATCHES "[Oo][Nn]")
set ( _project_specific_feature_requested ON )
endif()
if( ${_p_FEATURE}_user_provided_input OR _project_specific_feature_requested )
if( NOT _${_p_FEATURE}_condition )
string(REPLACE ";" " " _condition_msg "${_p_CONDITION}")
ecbuild_critical( "Feature ${_p_FEATURE} cannot be enabled -- following condition was not met: ${_condition_msg}" )
set ( _tick "OFF")
else()
ecbuild_critical( "Feature ${_p_FEATURE} cannot be enabled -- following required packages weren't found: ${_failed_to_find_packages}" )
set ( _tick "OFF")
endif()
else()
if( NOT _${_p_FEATURE}_condition )
string(REPLACE ";" " " _condition_msg "${_p_CONDITION}")
ecbuild_info( "Feature ${_p_FEATURE} was not enabled (also not requested) -- following condition was not met: ${_condition_msg}" )
set ( _tick "OFF")
else()
ecbuild_info( "Feature ${_p_FEATURE} was not enabled (also not requested) -- following required packages weren't found: ${_failed_to_find_packages}" )
set ( _tick "OFF")
endif()
set( ENABLE_${_p_FEATURE} OFF )
ecbuild_disable_unused_feature( ${_p_FEATURE} )
endif()
endif()
else()
ecbuild_info( "Feature ${_p_FEATURE} disabled" )
set( ${PROJECT_NAME}_HAVE_${_p_FEATURE} 0 )
ecbuild_disable_unused_feature( ${_p_FEATURE} )
endif()
# Retrieve any existing description (n.b. occurs when the same feature is added at multiple projects)
set(_enabled "${ENABLE_${_p_FEATURE}}")
get_property( _feature_desc GLOBAL PROPERTY _CMAKE_${_p_FEATURE}_DESCRIPTION )
# Append the new description
if( _feature_desc )
add_feature_info( ${_p_FEATURE} ${_enabled} "${_feature_desc}, ${PROJECT_NAME}(${_tick}): '${_p_DESCRIPTION}'" )
else()
add_feature_info( ${_p_FEATURE} ${_enabled} "${PROJECT_NAME}(${_tick}): '${_p_DESCRIPTION}'" )
endif()
if( ${_p_ADVANCED} )
mark_as_advanced( ENABLE_${_p_FEATURE} )
endif()
set( HAVE_${_p_FEATURE} ${${PROJECT_NAME}_HAVE_${_p_FEATURE}} )
if(ECBUILD_2_COMPAT)
set(ENABLE_${_p_FEATURE} ${ENABLE_${_p_FEATURE}})
ecbuild_mark_compat(ENABLE_${_p_FEATURE} "HAVE_${_p_FEATURE} or ${PROJECT_NAME}_HAVE_${_p_FEATURE}")
string( TOUPPER ${PROJECT_NAME} PROJECT_NAME_CAPS )
if (NOT "${PROJECT_NAME_CAPS}" STREQUAL "${PROJECT_NAME}")
ecbuild_declare_compat( ${PROJECT_NAME_CAPS}_HAVE_${_p_FEATURE} ${PROJECT_NAME}_HAVE_${_p_FEATURE})
endif()
endif()
if( ECBUILD_2_COMPAT )
set( DISABLE_ECBUILD_DEPRECATION_WARNINGS ${DISABLE_ECBUILD_DEPRECATION_WARNINGS_orig} )
endif()
endmacro( ecbuild_add_option )
|