comparison data/fileio/test/test.pro @ 756:02390a4c2abe

Toward audio read tests
author Chris Cannam
date Fri, 08 Mar 2013 16:14:21 +0000
parents
children 001d77a720ce
comparison
equal deleted inserted replaced
755:dc6c0e50724c 756:02390a4c2abe
1
2 TEMPLATE = app
3
4 LIBS += -L../../.. -lsvcore
5
6 include(../../../config.pri)
7
8 CONFIG += qt thread warn_on stl rtti exceptions console
9 QT += network xml testlib
10 QT -= gui
11
12 TARGET = svcore-test
13
14 DEPENDPATH += ../../..
15 INCLUDEPATH += ../../..
16 OBJECTS_DIR = o
17 MOC_DIR = o
18
19 HEADERS += AudioFileReaderTest.h \
20 AudioTestData.h
21 SOURCES += main.cpp
22
23 win* {
24 PRE_TARGETDEPS += ../../../svcore.lib
25 }
26 !win* {
27 PRE_TARGETDEPS += ../../../libsvcore.a
28 }
29
30 !win32 {
31 !macx* {
32 QMAKE_POST_LINK=./$${TARGET}
33 }
34 macx* {
35 QMAKE_POST_LINK=./$${TARGET}.app/Contents/MacOS/$${TARGET}
36 }
37 }
38
39 win32:QMAKE_POST_LINK=.$${TARGET}.exe
40