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:
authorThorvald Natvig <slicer@users.sourceforge.net>2010-08-12 00:33:16 +0400
committerThorvald Natvig <slicer@users.sourceforge.net>2010-08-12 00:35:41 +0400
commitff4783858cde19970f15e53c3a2c1d3931877d34 (patch)
tree546f14bcea00552c43c8618fc00063bd8b4f536e /celt-0.7.0-build
parent6cf5ac90ada188ac66fabc015fbe394ba6eed7a2 (diff)
SSE2 build using MSVC
Diffstat (limited to 'celt-0.7.0-build')
-rw-r--r--celt-0.7.0-build/celt-0.7.0-build.pro6
1 files changed, 5 insertions, 1 deletions
diff --git a/celt-0.7.0-build/celt-0.7.0-build.pro b/celt-0.7.0-build/celt-0.7.0-build.pro
index 6a4460d30..bd5780ad8 100644
--- a/celt-0.7.0-build/celt-0.7.0-build.pro
+++ b/celt-0.7.0-build/celt-0.7.0-build.pro
@@ -33,8 +33,12 @@ QMAKE_CFLAGS -= -fPIE -pie
win32 {
DEFINES += WIN32 _WIN32
INCLUDEPATH += ../$$BUILDDIR/win32
- CONFIG(intelcpp) {
+
+ CONFIG(sse2) {
TARGET_VERSION_EXT = .$${VERSION}.sse2
+ } else {
+ QMAKE_CFLAGS_RELEASE -= -arch:SSE
+ QMAKE_CFLAGS_DEBUG -= -arch:SSE
}
}