Fix CMakeLists.txt to keep compatibility with CMake 3.10.2
authorGreg Fischer <greg@lunarg.com>
Thu, 22 Apr 2021 22:30:17 +0000 (16:30 -0600)
committerGreg Fischer <greg@lunarg.com>
Thu, 22 Apr 2021 22:30:17 +0000 (16:30 -0600)
CMakeLists.txt

index 9ed5265..70fe3fe 100644 (file)
@@ -195,7 +195,7 @@ elseif(MSVC)
         add_compile_options(/EHsc) # Enable Exceptions
        else()
         string(REGEX REPLACE /EHsc "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}) # Try to remove default /EHsc cxx_flag
-        add_compile_definitions(_HAS_EXCEPTIONS=0)
+        add_compile_options(/D_HAS_EXCEPTIONS=0)
     endif()
 endif()