)
ELSE()
SET(_hint_snippet
- "or set the relevant variables by hand in ccmake."
+ " or set the relevant variables by hand in ccmake."
)
ENDIF()
IF(FEATURE_${_feature}_HAVE_BUNDLED)
SET(_bundled_snippet
- "\n\nAlternatively you may choose to compile the bundled library of
-${_feature_lowercase} by setting DEAL_II_ALLOW_BUNDLED=on or\nDEAL_II_FORCE_BUNDLED_${_feature}=on.\n"
+ "\nAlternatively you may choose to compile the bundled library of "
+ "${_feature_lowercase} by setting DEAL_II_ALLOW_BUNDLED=on or "
+ "DEAL_II_FORCE_BUNDLED_${_feature}=on.\n"
)
ELSE()
SET(_bundled_snippet "\n")
"Could not find the ${_feature_lowercase} library!\n"
${${_feature}_ADDITIONAL_ERROR_STRING}
"Please ensure that a suitable ${_feature_lowercase} library is installed on your computer.\n"
- "If the library is not at a default location, either provide some hints\n"
+ "If the library is not at a default location, either provide some hints "
"for autodetection,${_hint_snippet}${_bundled_snippet}"
)
ENDMACRO()
STRING(REGEX REPLACE "^DEAL_II_WITH_" "" _dependency ${_dependency})
IF(NOT FEATURE_${_dependency}_PROCESSED)
MESSAGE(FATAL_ERROR "\n"
- "Internal build system error:\nDEAL_II_WITH_${_feature} depends on "
- "DEAL_II_WITH_${_dependency},\nbut CONFIGURE_FEATURE(${_feature}) "
+ "Internal build system error: DEAL_II_WITH_${_feature} depends on "
+ "DEAL_II_WITH_${_dependency}, but CONFIGURE_FEATURE(${_feature}) "
"was called before CONFIGURE_FEATURE(${_dependency}).\n\n"
)
ENDIF()