From: Timo Heister Date: Tue, 30 Jun 2015 13:36:06 +0000 (-0400) Subject: clarify cmake dependency message X-Git-Tag: v8.3.0-rc1~74^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=392a2a6e1914ce9bb601441a178a9f09fb4a88d6;p=dealii.git clarify cmake dependency message change the message: BLA has unmet configuration requirements: MPI has to be set to "ON". to: BLA has unmet configuration requirements: DEAL_II_WITH_MPI has to be set to "ON". --- diff --git a/cmake/macros/macro_configure_feature.cmake b/cmake/macros/macro_configure_feature.cmake index 41efaaf35f..77e0720334 100644 --- a/cmake/macros/macro_configure_feature.cmake +++ b/cmake/macros/macro_configure_feature.cmake @@ -197,12 +197,12 @@ MACRO(CONFIGURE_FEATURE _feature) IF(DEAL_II_WITH_${_feature}) MESSAGE(FATAL_ERROR "\n" "DEAL_II_WITH_${_feature} has unmet configuration requirements: " - "${_dependency} has to be set to \"ON\".\n\n" + "DEAL_II_WITH_${_dependency} has to be set to \"ON\".\n\n" ) ELSE() MESSAGE(STATUS "DEAL_II_WITH_${_feature} has unmet configuration requirements: " - "${_dependency} has to be set to \"ON\"." + "DEAL_II_WITH_${_dependency} has to be set to \"ON\"." ) PURGE_FEATURE(${_feature}) SET_CACHED_OPTION(${_feature} OFF)