Added exception handling for windows

This commit is contained in:
WolverinDEV 2019-10-19 13:55:12 +02:00
parent 6b667b8d73
commit df79c2acab
1 changed files with 1 additions and 0 deletions

View File

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