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

Resample.pro « tests « src - github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: edfac70d5e017210c7626d924ec6810ebfead032 (plain)
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
include(../../compiler.pri)
TEMPLATE = app
CONFIG += qt thread warn_on release qtestlib no_keywords console
CONFIG -= app_bundle
LANGUAGE = C++
TARGET = Resample
SOURCES = Resample.cpp Timer.cpp
HEADERS = Timer.h
VPATH += ..
INCLUDEPATH	*= .. ../../3rdparty/speex-src/include ../../3rdparty/speex-src/libspeex ../../3rdparty/speex-build
LIBS 		*= -lspeex

win32 {
  CONFIG(intelcpp) {
    LIBS	*= -l"\Program Files (x86)\Intel/Compiler\11.0\075\cpp\ipp\ia32\lib\ippsemerged"
    LIBS	*= -l"\Program Files (x86)\Intel/Compiler\11.0\075\cpp\ipp\ia32\lib\ippsmerged"
    LIBS	*= -l"\Program Files (x86)\Intel/Compiler\11.0\075\cpp\ipp\ia32\lib\ippsremerged"
    LIBS	*= -l"\Program Files (x86)\Intel/Compiler\11.0\075\cpp\ipp\ia32\lib\ippsrmerged"
    LIBS	*= -l"\Program Files (x86)\Intel/Compiler\11.0\075\cpp\ipp\ia32\lib\ippcorel"
  }
}

CONFIG(debug, debug|release) {
  QMAKE_LIBDIR = ../../debug $$QMAKE_LIBDIR
  DESTDIR	= ../../debug
}

CONFIG(release, debug|release) {
  QMAKE_LIBDIR = ../../release $$QMAKE_LIBDIR
  DESTDIR	= ../../release
}