if(NOT "${CMAKE_CXX_STANDARD}" STREQUAL "${_cxx_standard}")
message(FATAL_ERROR
"\nThe current version of deal.II was configured with CMAKE_CXX_STANDARD "
- "set to »${CMAKE_CXX_STANDARD}«, but we detected only support for standard "
- "version »${_cxx_standard}«. Either unset the CMake variable "
- "CMAKE_CXX_STANDARD, or ensure that it is at most set to »${_cxx_standard}«.\n\n"
+ "set to \"${CMAKE_CXX_STANDARD}\", but we detected only support for standard "
+ "version \"${_cxx_standard}\". Either unset the CMake variable "
+ "CMAKE_CXX_STANDARD, or ensure that it is at most set to \"${_cxx_standard}\".\n\n"
)
endif()
#
if("${_lib}" MATCHES "::")
message(FATAL_ERROR
- "Undefined imported target name »${_lib}« present in interface "
- "of target »${_entry}«."
+ "Undefined imported target name \"${_lib}\" present in interface "
+ "of target \"${_entry}\"."
)
endif()
list(APPEND _libraries ${_lib})
#
if("${_lib}" MATCHES "::")
message(FATAL_ERROR
- "Undefined imported target name »${_lib}« present when defining "
- "interface target »${_interface_target}«"
+ "Undefined imported target name \"${_lib}\" present when defining "
+ "interface target \"${_interface_target}\""
)
endif()
endforeach()
elseif(_arg MATCHES "^(optimized|debug|general)$")
message(FATAL_ERROR
"Internal configuration error: process_feature() does not support "
- "»debug«, »optimized«, or »general« library identifiers, use the "
+ "\"debug«, »optimized«, or »general\" library identifiers, use the "
"appropriate keyword instead."
)
endif()
#
function(target_compile_flags _target _keyword _string)
if(NOT TARGET ${_target})
- message(FATAL_ERROR "»${_target}« is not a valid target")
+ message(FATAL_ERROR "\"${_target}\" is not a valid target")
endif()
if(NOT ${_keyword} MATCHES "(INTERFACE|PUBLIC|PRIVATE)")
message(FATAL_ERROR
#
function(target_link_flags _target _keyword _string)
if(NOT TARGET ${_target})
- message(FATAL_ERROR "»${_target}« is not a valid target")
+ message(FATAL_ERROR "\"${_target}\" is not a valid target")
endif()
if(NOT ${_keyword} MATCHES "(INTERFACE|PUBLIC|PRIVATE)")