-
Notifications
You must be signed in to change notification settings - Fork 3
/
tests.pro
27 lines (27 loc) · 847 Bytes
/
tests.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
TEMPLATE = app
TARGET = qrest_unit_tests
QT = core \
testlib
MOC_DIR = tmp
OBJECTS_DIR = tmp
HEADERS += tests/process/tapTempoCalculatorTestCase.h \
tests/helpers/tapTempoTestThread.h \
tests/process/delayCalculatorTestCase.h \
src/process/processor.h \
src/process/delayCalculator.h \
src/model/document.h \
src/model/delay.h \
src/dp/observable.h \
src/process/tapTempoCalculator.h \
src/time/timeStamper.h
SOURCES += tests/process/tapTempoCalculatorTestCase.cpp \
tests/helpers/tapTempoTestThread.cpp \
tests/maintests.cpp \
tests/process/delayCalculatorTestCase.cpp \
src/process/processor.cpp \
src/process/delayCalculator.cpp \
src/model/document.cpp \
src/model/delay.cpp \
src/dp/observable.cpp \
src/process/tapTempoCalculator.cpp \
src/time/timeStamper.cpp