dear god i hate msvc now

This commit is contained in:
Essem 2022-01-21 01:03:22 -06:00
parent de9b984973
commit f08bbe1b1d
No known key found for this signature in database
GPG Key ID: 7D497397CC3A2A8C
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ set_target_properties(${PROJECT_NAME} PROPERTIES PREFIX "" SUFFIX ".node")
target_link_libraries(${PROJECT_NAME} ${CMAKE_JS_LIB})
target_compile_features(${PROJECT_NAME} PRIVATE cxx_std_17)
if(MSVC)
set(CMAKE_CXX_FLAGS "/Wall /Wno-cast-function-type /fexceptions /fstack-clash-protection /pedantic")
set(CMAKE_CXX_FLAGS "/Wall /EHsc /GS") # idk anything about msvc
set(CMAKE_CXX_FLAGS_DEBUG "/Zi")
else()
set(CMAKE_CXX_FLAGS "-Wall -Wextra -Werror=format-security -Wno-cast-function-type -fexceptions -D_GLIBCXX_ASSERTIONS -fstack-clash-protection -pedantic -D_GLIBCXX_USE_CXX11_ABI=1")