Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavide Beatrici <davidebeatrici@gmail.com>2017-02-23 18:42:18 +0300
committerDavide Beatrici <davidebeatrici@gmail.com>2017-03-17 21:14:17 +0300
commit5754a097abc2aed8b449aa40ee47a73eecbfe9cb (patch)
treec28fbddeccfe834b76ea6a68799890caf13fe821 /qmake/compiler.pri
parent45a40bfbfbb113421c67b66330d0176936b892a4 (diff)
compiler.pri: Enable SSE and SSE2 for MinGW
Diffstat (limited to 'qmake/compiler.pri')
-rw-r--r--qmake/compiler.pri4
1 files changed, 4 insertions, 0 deletions
diff --git a/qmake/compiler.pri b/qmake/compiler.pri
index 2182f62a3..ae5327cf4 100644
--- a/qmake/compiler.pri
+++ b/qmake/compiler.pri
@@ -33,6 +33,10 @@ isEqual(QT_MAJOR_VERSION, 5) {
win32-g++ {
DEFINES *= MINGW_HAS_SECURE_API
+ # Enable SSE
+ QMAKE_CFLAGS *= -msse -msse2
+ QMAKE_CXXFLAGS *= -msse -msse2
+
CONFIG(symbols) {
# Configure build to be able to properly debug release builds
QMAKE_CFLAGS *= -g