blob: bc557ebf1dfd36df81ccf44103db791834979072 (
plain)
1
2
3
4
5
6
7
|
function(set_project_warnings target)
if (MSVC)
target_compile_options(${target} PRIVATE /W4 /permissive-)
else()
target_compile_options(${target} PRIVATE -Wall -Wextra -Wpedantic -Werror)
endif()
endfunction()
|