-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathOSC.test.pro
48 lines (40 loc) · 1.24 KB
/
OSC.test.pro
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
QT -= gui
TARGET = oscTest
TEMPLATE = app
DEFINES += BUILD_UNITTESTS
CONFIG(debug, debug|release) {
DESTDIR = $$PWD/bin/debug
}
CONFIG(release, debug|release) {
DESTDIR = $$PWD/bin/release
}
OBJECTS_DIR = $$DESTDIR/tmp/obj/$$TARGET/.obj
MOC_DIR = $$DESTDIR/tmp/moc/$$TARGET/.moc
RCC_DIR = $$DESTDIR/tmp/qrc/$$TARGET/.qrc
UI_DIR = $$DESTDIR/tmp/ui/$$TARGET/.ui
INCLUDEPATH += $$PWD/gtest/include
LIBS += -L$$PWD/gtest/lib -lgtest -L$$DESTDIR -losc
SOURCES += \
unitTests/main.cpp \
unitTests/TestByteBuffer.cpp \
unitTests/TestOscAddress.cpp \
unitTests/TestOscArrayBegin.cpp \
unitTests/TestOscArrayEnd.cpp \
unitTests/TestOscBlob.cpp \
unitTests/TestOscChar.cpp \
unitTests/TestOscDouble.cpp \
unitTests/TestOscFalse.cpp \
unitTests/TestOscFloat.cpp \
unitTests/TestOscInfinitum.cpp \
unitTests/TestOscInteger.cpp \
unitTests/TestOscLong.cpp \
unitTests/TestOscMessageComposer.cpp \
unitTests/TestOscMidi.cpp \
unitTests/TestOscNil.cpp \
unitTests/TestOscPatternMatching.cpp \
unitTests/TestOscReader.cpp \
unitTests/TestOscRGBA.cpp \
unitTests/TestOscString.cpp \
unitTests/TestOscSymbol.cpp \
unitTests/TestOscTimetag.cpp \
unitTests/TestOscTrue.cpp