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>2008-03-18 18:01:12 +0300
committerThorvald Natvig <slicer@users.sourceforge.net>2008-03-18 18:01:12 +0300
commitb489aebca55ec6feac6589bf49a33abdd19a13ca (patch)
tree12fdee4646a478d6d3f2d7915d076758f0299d9e /speexbuild
parent716b39e6f7c9209ea3d4b6f64f47b5745ee5b3f1 (diff)
Path #1916131 Compilation Fixes for Visual C++ 2008 [dark-storm]
git-svn-id: https://mumble.svn.sourceforge.net/svnroot/mumble/trunk@1005 05730e5d-ab1b-0410-a4ac-84af385074fa
Diffstat (limited to 'speexbuild')
-rw-r--r--speexbuild/speexbuild.pro17
1 files changed, 10 insertions, 7 deletions
diff --git a/speexbuild/speexbuild.pro b/speexbuild/speexbuild.pro
index 74fee7ad3..e7e4b7cf2 100644
--- a/speexbuild/speexbuild.pro
+++ b/speexbuild/speexbuild.pro
@@ -10,13 +10,16 @@ DEFINES += NDEBUG HAVE_CONFIG_H
INCLUDEPATH = ../speex/include ../speex/libspeex
win32 {
- DEFINES+=WIN32 _WINDOWS _USE_SSE VAR_ARRAYS
- QMAKE_CC = icl
- QMAKE_CFLAGS += -Qstd=c99 -Qrestrict
- QMAKE_CFLAGS_RELEASE += -O3 -QxK -Qip -Qipo
- QMAKE_CFLAGS_DEBUG += -O2 -QxK -Ob0
- INCLUDEPATH += ../speex/win32
- QMAKE_LIB = xilib /nologo
+ INCLUDEPATH += ../speex/win32
+ DEFINES+=WIN32 _WINDOWS _USE_SSE
+ CONFIG(intelcpp) {
+ DEFINES += VAR_ARRAYS
+ QMAKE_CC = icl
+ QMAKE_CFLAGS += -Qstd=c99 -Qrestrict
+ QMAKE_CFLAGS_RELEASE += -O3 -QxK -Qip -Qipo
+ QMAKE_CFLAGS_DEBUG += -O2 -QxK -Ob0
+ QMAKE_LIB = xilib /nologo
+ }
}
unix {