-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathqcdm.pro
More file actions
executable file
·47 lines (37 loc) · 1.73 KB
/
qcdm.pro
File metadata and controls
executable file
·47 lines (37 loc) · 1.73 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
40
41
42
43
44
45
46
47
#-------------------------------------------------
# QMake Build Script for: openpst/qcdm
#-------------------------------------------------
lessThan(QT_MAJOR_VERSION, 5): error("At least Qt 5.0 is required")
QT += core gui widgets xml
CONFIG += C++11
TARGET = qcdm
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/gui-common/include
SOURCES += \
$$BASE_DIR/src/qcdm_window.cpp \
$$BASE_DIR/src/worker/qcdm_efs_directory_tree_worker.cpp \
$$BASE_DIR/src/worker/qcdm_efs_file_read_worker.cpp \
$$BASE_DIR/src/worker/qcdm_efs_file_write_worker.cpp \
$$BASE_DIR/src/worker/qcdm_memory_read_worker.cpp \
$$BASE_DIR/src/worker/qcdm_prl_read_worker.cpp \
$$BASE_DIR/src/worker/qcdm_prl_write_worker.cpp \
$$BASE_DIR/src/worker/qcdm_nv_item_read_worker.cpp \
$$BASE_DIR/src/main.cpp
HEADERS += \
$$BASE_DIR/include/qcdm_window.h \
$$BASE_DIR/include/worker/qcdm_efs_directory_tree_worker.h \
$$BASE_DIR/include/worker/qcdm_efs_file_read_worker.h \
$$BASE_DIR/include/worker/qcdm_efs_file_write_worker.h \
$$BASE_DIR/include/worker/qcdm_memory_read_worker.h \
$$BASE_DIR/include/worker/qcdm_prl_read_worker.h \
$$BASE_DIR/include/worker/qcdm_prl_write_worker.h \
$$BASE_DIR/include/worker/qcdm_nv_item_read_worker.h
FORMS += $$BASE_DIR/resources/ui/qcdm_window.ui
RESOURCES = $$BASE_DIR/resources/qcdm.qrc