forked from KDAB/KDSoap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
g++.pri
36 lines (28 loc) · 1.2 KB
/
g++.pri
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
*-g++* {
NORMAL_CFLAGS = -Wno-long-long -ansi
win32-g++ {
NORMAL_CFLAGS += -U__STRICT_ANSI__
}
NORMAL_CXXFLAGS = \
-Wnon-virtual-dtor -Wundef -Wcast-align \
-Wchar-subscripts -Wpointer-arith \
-Wwrite-strings -Wformat -Wformat-security \
-Wmissing-format-attribute -Woverloaded-virtual
# -Wconversion gives too many warnings from Qt-4.4.3 with gcc-4.3.2 (was fine with gcc-4.2.4), so removing it
# -Wpacked gives warnings with Qt 4.8, removed
NORMAL_CFLAGS += -pedantic
CONFIG(debug, debug|release) {
NORMAL_CXXFLAGS += -O0 -g3
NORMAL_CXXFLAGS -= -g
}
USABLE_CXXFLAGS = -Wold-style-cast
HARD_CXXFLAGS = -Weffc++ -Wshadow
PITA_CXXFLAGS = -Wunreachable-code
QMAKE_CFLAGS += $$NORMAL_CFLAGS
QMAKE_CXXFLAGS += $$NORMAL_CFLAGS $$NORMAL_CXXFLAGS
kdab:QMAKE_CFLAGS_WARN_ON += $$NORMAL_CFLAGS -Werror
kdab:QMAKE_CXXFLAGS_WARN_ON += $$NORMAL_CFLAGS $$NORMAL_CXXFLAGS -Werror
#QMAKE_CXXFLAGS_WARN_ON += $$USABLE_CXXFLAGS
#QMAKE_CXXFLAGS_WARN_ON += $$HARD_CXXFLAGS # headers must compile with this, code doesn't need to; needs patched Qt
#QMAKE_CXXFLAGS_WARN_ON += $$PITA_CXXFLAGS # header would be nice, but it's probably pointless, due to noise from Qt and libstdc++
}