-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathqt-plus-tests.pro
More file actions
37 lines (28 loc) · 831 Bytes
/
qt-plus-tests.pro
File metadata and controls
37 lines (28 loc) · 831 Bytes
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
#-------------------------------------------------
#
# Project created by QtCreator 2016-03-21T15:40:48
#
#-------------------------------------------------
QT += gui xml network serialport positioning qml quickwidgets
CONFIG += console
TEMPLATE = app
SOURCES += \
source/cpp/Test/tests-main.cpp \
source/cpp/Test/ParsingMonitor.cpp
HEADERS += \
source/cpp/Test/tests-main.h \
source/cpp/Test/ParsingMonitor.h
DEPENDPATH += qt-plus
DESTDIR = $$PWD/bin
MOC_DIR = $$PWD/moc/qt-plus-tests
OBJECTS_DIR = $$PWD/obj/qt-plus-tests
QMAKE_CLEAN *= $$DESTDIR/*$$TARGET*
QMAKE_CLEAN *= $$MOC_DIR/*$$TARGET*
QMAKE_CLEAN *= $$OBJECTS_DIR/*$$TARGET*
CONFIG(debug, debug|release) {
TARGET = qt-plus-testsd
LIBS += -L$$PWD/bin/ -lqt-plusd
} else {
TARGET = qt-plus-tests
LIBS += -L$$PWD/bin/ -lqt-plus
}