This commit is contained in:
Dain Nilsson 2023-07-06 10:30:07 +02:00
commit 17d35ecdde
No known key found for this signature in database
GPG Key ID: F04367096FBA95E8

View File

@ -39,6 +39,8 @@ function(APPLY_STANDARD_SETTINGS TARGET)
target_compile_features(${TARGET} PUBLIC cxx_std_17)
target_compile_options(${TARGET} PRIVATE /W4 /WX /wd"4100")
target_compile_options(${TARGET} PRIVATE /EHsc)
target_compile_options(${TARGET} PRIVATE /GUARD:CF)
target_link_options(${TARGET} PRIVATE /GUARD:CF)
target_compile_definitions(${TARGET} PRIVATE "_HAS_EXCEPTIONS=0")
target_compile_definitions(${TARGET} PRIVATE "$<$<CONFIG:Debug>:_DEBUG>")
endfunction()