Updated exception handling

This commit is contained in:
WolverinDEV 2019-10-19 13:24:17 +01:00
parent 85b321409d
commit 7681b2e883
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ if (MSVC)
foreach(CompilerFlag ${CompilerFlags})
string(REPLACE "/MD" "/MT" ${CompilerFlag} "${${CompilerFlag}}")
endforeach()
add_compile_options("/EHa") #We require exception handling
add_compile_options("/EHsc") #We require exception handling
else()
set(CMAKE_CXX_FLAGS_RELEASE "-O3") #-DNDEBUG We want assert!
endif()