From 48937f931a85578fd7511c394d9715fa62f95399 Mon Sep 17 00:00:00 2001 From: Alastair Cota Date: Sun, 8 Aug 2021 17:00:26 +0100 Subject: [PATCH] Update CMakeLists.txt Checked REGEX REPLACE for consistency failure --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2d290622..c318eef9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -198,7 +198,7 @@ elseif(MSVC) if(ENABLE_EXCEPTIONS) add_compile_options(/EHsc) # Enable Exceptions else() - string(REGEX REPLACE /EHsc "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}) # Try to remove default /EHsc cxx_flag + string(REGEX REPLACE "/EHsc" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") # Try to remove default /EHsc cxx_flag add_compile_options(/D_HAS_EXCEPTIONS=0) endif() endif()