We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 994d2dd commit c30287cCopy full SHA for c30287c
Qt/GPU.pro
@@ -61,7 +61,8 @@ SOURCES += $$P/GPU/GeDisasm.cpp \ # GPU
61
$$P/GPU/Common/SplineCommon.cpp \
62
$$P/GPU/Common/DrawEngineCommon.cpp \
63
$$P/ext/xxhash.c \ # xxHash
64
- $$P/ext/xbrz/*.cpp # XBRZ
+ $$P/ext/xbrz/*.cpp \ # XBRZ
65
+ $$P/Core/TextureReplacer.cpp # Bit of a hack. Avoids a linking issue.
66
67
armv7: SOURCES += $$P/GPU/Common/TextureDecoderNEON.cpp
68
Qt/Settings.pri
@@ -67,6 +67,11 @@ win32-msvc* {
QMAKE_ALLFLAGS_RELEASE += -O3 -ffast-math
}
69
70
+symbian {
71
+ # Silence a common warning in system headers.
72
+ QMAKE_CXXFLAGS += -Wno-address
73
+}
74
+
75
contains(QT_CONFIG, opengles.) {
76
DEFINES += USING_GLES2
77
# How else do we know if the environment prefers windows?
0 commit comments