From 1026cc4fd499d6b231ad82c0ce2f520272156a0f Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 24 Mar 2025 10:11:30 -0600 Subject: [PATCH] Avoid unicode quoting. --- cmake/checks/check_01_cxx_features.cmake | 6 +++--- cmake/macros/macro_copy_target_properties.cmake | 4 ++-- cmake/macros/macro_define_interface_target.cmake | 4 ++-- cmake/macros/macro_process_feature.cmake | 2 +- cmake/macros/macro_target_compile_flags.cmake | 2 +- cmake/macros/macro_target_link_flags.cmake | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/cmake/checks/check_01_cxx_features.cmake b/cmake/checks/check_01_cxx_features.cmake index 30e60ef846..4afc00efc2 100644 --- a/cmake/checks/check_01_cxx_features.cmake +++ b/cmake/checks/check_01_cxx_features.cmake @@ -385,9 +385,9 @@ set(CMAKE_CXX_EXTENSIONS OFF) 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() diff --git a/cmake/macros/macro_copy_target_properties.cmake b/cmake/macros/macro_copy_target_properties.cmake index 9a59656063..8485816d8d 100644 --- a/cmake/macros/macro_copy_target_properties.cmake +++ b/cmake/macros/macro_copy_target_properties.cmake @@ -83,8 +83,8 @@ function(copy_target_properties _destination_target) # 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}) diff --git a/cmake/macros/macro_define_interface_target.cmake b/cmake/macros/macro_define_interface_target.cmake index c3c41825ec..b031599c7f 100644 --- a/cmake/macros/macro_define_interface_target.cmake +++ b/cmake/macros/macro_define_interface_target.cmake @@ -97,8 +97,8 @@ function(define_interface_target _feature) # 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() diff --git a/cmake/macros/macro_process_feature.cmake b/cmake/macros/macro_process_feature.cmake index 4394ca0a03..3289786763 100644 --- a/cmake/macros/macro_process_feature.cmake +++ b/cmake/macros/macro_process_feature.cmake @@ -131,7 +131,7 @@ macro(process_feature _feature) 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() diff --git a/cmake/macros/macro_target_compile_flags.cmake b/cmake/macros/macro_target_compile_flags.cmake index d9ba92af96..9e0ba9b927 100644 --- a/cmake/macros/macro_target_compile_flags.cmake +++ b/cmake/macros/macro_target_compile_flags.cmake @@ -28,7 +28,7 @@ # 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 diff --git a/cmake/macros/macro_target_link_flags.cmake b/cmake/macros/macro_target_link_flags.cmake index 50b8f8569f..5b2893aa1f 100644 --- a/cmake/macros/macro_target_link_flags.cmake +++ b/cmake/macros/macro_target_link_flags.cmake @@ -28,7 +28,7 @@ # 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)") -- 2.39.5