From 3d86248dac5fa0a42af4605da6b880285c27ee86 Mon Sep 17 00:00:00 2001 From: Markus Blatt <mblatt@dune-project.org> Date: Tue, 19 Feb 2013 10:09:46 +0000 Subject: [PATCH] Added define for HAVE_<MODULE_NAME>. [[Imported from SVN: r7130]] --- cmake/modules/DuneMacros.cmake | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/cmake/modules/DuneMacros.cmake b/cmake/modules/DuneMacros.cmake index eb23ed70a..907ae4f81 100644 --- a/cmake/modules/DuneMacros.cmake +++ b/cmake/modules/DuneMacros.cmake @@ -2,10 +2,10 @@ # # Provides the following macros: # -# dune_module_to_upper_case +# dune_module_to_uppercase(upper_name module_name) # -# Converts a module name given by _module into an uppercase string -# _upper where all dashes (-) are replaced by underscores (_) +# Converts a module name given by module_name into an uppercase string +# upper_name where all dashes (-) are replaced by underscores (_) # Example: dune-common -> DUNE_COMMON # # dune_module_information(MODULE_DIR) @@ -499,8 +499,16 @@ macro(dune_regenerate_config_cmake) from the config.h.cmake files of modules this module depends on. */" ) + foreach(_dep ${DUNE_MOD_NAME} ${ALL_DEPENDENCIES}) + dune_module_to_uppercase(upper ${_dep}) + set(HAVE_${upper} ${${_dep}_FOUND}) + file(APPEND ${CONFIG_H_CMAKE_FILE} + "\n\n/* Define to 1 if you have module ${_dep} available */ +#cmakedefine01 HAVE_${upper}\n") + endforeach(_dep ${DUNE_MOD_NAME} ${ALL_DEPENDENCIES}) + # add previous module specific section - foreach(_dep ${ALL_DEPENDENCIES}) + foreach(_dep ${ALL_DEPENDENCIES}) foreach(_mod_conf_file ${${_dep}_PREFIX}/config.h.cmake ${${_dep}_PREFIX}/share/${_dep}/config.h.cmake) if(EXISTS ${_mod_conf_file}) -- GitLab