summaryrefslogtreecommitdiffstats
path: root/cmake/QtCompilerFlags.cmake
blob: 35733027f5012874a7942a0cae1543b9b4bfc07f (plain)
1
2
3
4
5
6
# Set warnings. All compilers except MSVC support -Wall -Wextra
if (MSVC)
    add_compile_options(/W3)
else()
    add_compile_options(-Wall -Wextra)
endif()