-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtext_editor.pro
More file actions
64 lines (47 loc) · 2.01 KB
/
Copy pathtext_editor.pro
File metadata and controls
64 lines (47 loc) · 2.01 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# --------------------------------------------------------------------------- #
# basic settings
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4) : QT += widgets
CONFIG += c++17
# --------------------------------------------------------------------------- #
# --------------------------------------------------------------------------- #
# source files
SOURCES += \
sources/main.cpp \
sources/text_editor.cpp \
sources/status_bar.cpp
# --------------------------------------------------------------------------- #
# --------------------------------------------------------------------------- #
# header files
HEADERS += \
headers/text_editor.hpp \
headers/status_bar.hpp
# --------------------------------------------------------------------------- #
# --------------------------------------------------------------------------- #
# form files
FORMS += \
forms_ui/text_editor.ui
# --------------------------------------------------------------------------- #
# --------------------------------------------------------------------------- #
# resource files
RESOURCES += \
resources.qrc
# --------------------------------------------------------------------------- #
# --------------------------------------------------------------------------- #
# include paths
INCLUDEPATH += \
headers
# --------------------------------------------------------------------------- #
# --------------------------------------------------------------------------- #
# other files
RC_FILE += \
config/text_editor.rc
OTHER_FILES += \
config/text_editor.rc
# --------------------------------------------------------------------------- #
# --------------------------------------------------------------------------- #
# default rules for deployment
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
# --------------------------------------------------------------------------- #