Commit 87daf4dd authored by Lorenz Meier's avatar Lorenz Meier

Merge pull request #536 from DonLakeFlyer/LinuxWarningsOff

Turn off -Werror for Linux
parents 94342959 ec15777c
......@@ -135,8 +135,13 @@ WindowsBuild {
#
MacBuild | LinuxBuild {
QMAKE_CXXFLAGS_WARN_ON += -Wall \
-Werror
QMAKE_CXXFLAGS_WARN_ON += -Wall
}
# Note: -Werror is currently not turned on for Linux due to unfixed problems with release builds
MacBuild {
QMAKE_CXXFLAGS_WARN_ON += -Werror
}
WindowsBuild {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment