Newer
Older
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
TARGET = xdgurl
TEMPLATE = app
QT += \
core \
gui \
widgets \
qml \
quick \
svg \
network
CONFIG += \
c++11
SOURCES += \
src/main.cpp \
src/core/config.cpp \
src/core/network.cpp \
src/handlers/item.cpp \
src/utility/file.cpp \
src/utility/json.cpp
HEADERS += \
src/core/config.h \
src/core/network.h \
src/handlers/item.h \
src/utility/file.h \
src/utility/json.h
RESOURCES += \
src/qml.qrc \
src/configs.qrc
DISTFILES += \
README.md
# Additional RPATH
#include(rpath.pri)
# Deployment rules
include(deployment.pri)