-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathstreaming_dload.pro
More file actions
executable file
·39 lines (30 loc) · 1.41 KB
/
streaming_dload.pro
File metadata and controls
executable file
·39 lines (30 loc) · 1.41 KB
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
#-------------------------------------------------
# QMake Build Script for: openpst/streaming-dload
#-------------------------------------------------
lessThan(QT_MAJOR_VERSION, 5): error("At least Qt 5.0 is required")
QT += core gui widgets
CONFIG += C++11
TARGET = streaming-dload
TEMPLATE = app
equals(BASE_DIR, ""): BASE_DIR = $$PWD
include($$BASE_DIR/lib/gui-common/gui-common.pri)
include($$BASE_DIR/lib/gui-common/gui-common.pro)
include($$BASE_DIR/lib/libopenpst/libopenpst.pri)
INCLUDEPATH += $$BASE_DIR/include \
$$BASE_DIR/lib/libopenpst/include \
$$BASE_DIR/lib/libopenpst/lib/serial/include \
$$BASE_DIR/lib/libopenpst/lib/pugixml/src \
$$BASE_DIR/lib/gui-common/include
SOURCES += \
$$BASE_DIR/src/streaming_dload_window.cpp \
$$BASE_DIR/src/task/streaming_dload_read_task.cpp \
$$BASE_DIR/src/task/streaming_dload_read_gpt_task.cpp \
$$BASE_DIR/src/task/streaming_dload_stream_write_task.cpp \
$$BASE_DIR/src/main.cpp
HEADERS += \
$$BASE_DIR/include/streaming_dload_window.h \
$$BASE_DIR/include/task/streaming_dload_read_task.h \
$$BASE_DIR/include/task/streaming_dload_read_gpt_task.h \
$$BASE_DIR/include/task/streaming_dload_stream_write_task.h
FORMS += $$BASE_DIR/resources/ui/streaming_dload_window.ui
RESOURCES = $$BASE_DIR/resources/streaming_dload.qrc