-
Notifications
You must be signed in to change notification settings - Fork 0
/
Blog.pro
46 lines (37 loc) · 1.12 KB
/
Blog.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
QT += quick quickcontrols2
SOURCES += \
sources/article.cpp \
sources/articlemodel.cpp \
sources/filehandler.cpp \
sources/main.cpp \
sources/user.cpp \
sources/windowloader.cpp
resources.files += qml/main.qml qml/login.qml qml/Header.qml qml/create.qml qml/loader.qml
resources.prefix = /$${TARGET}/
RESOURCES += resources \
qml.qrc
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
# Additional import path used to resolve QML modules just for Qt Quick Designer
QML_DESIGNER_IMPORT_PATH =
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
DISTFILES += \
qml/Header.qml \
qml/README.md \
qml/create.qml \
qml/data.json \
qml/loader.qml \
qml/login.qml \
qml/main.qml \
HEADERS += \
headers/article.h \
headers/articlemodel.h \
headers/filehandler.h \
headers/user.h \
headers/windowloader.h
ICON = icon/Blog.png
macos: ICON = icon/Blog.icns
win32: RC_FILE = icon/Blog.rc