summaryrefslogtreecommitdiff
path: root/secushare.pro
blob: 32d28d06305fe52d909b9bd3d54ffc2c23fba16d (plain) (blame)
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
65
66
67
68
69
70
71
72
73
74
75
76
# tweaks for lynX.
#
# no, it does not work to put them into a separate .pro file
# and they do exactly zero harm to stay just here while we develop this thing.
# i don't see why i should lose hours finding out how this can be achieved
# differently when there just isn't any need to do it differently.
# pointless perfectionism is a bad habit we all need to address!
#
INCLUDEPATH += /usr/depot/include
QMAKE_LIBDIR += /usr/depot/lib

INCLUDEPATH += src

TEMPLATE = app

QT += qml quick widgets

LIBS += -lgnunetutil -lgnunetcore -lgnunetidentity -lgnunetsocial -lgnunetpsycutil -lqrencode

#include(3rdParty/qzxing-master/QZXing.pro)

SOURCES += src/main.cpp \
    src/app.cpp \
    src/model/models.cpp \
    src/model/EgoListModel.cpp \
    src/model/NymListModel.cpp \
    src/model/PlaceListModel.cpp \
    src/model/ThreadListModel.cpp \
    src/model/ThreadModel.cpp \
    src/gnunet/gnunet.cpp \
    src/gnunet/social/socialapp.cpp \
    src/gnunet/social/nym.cpp \
    src/gnunet/social/ego.cpp \
    src/gnunet/social/modifier.cpp \
    src/gnunet/social/message.cpp \
    src/gnunet/social/place.cpp \
    src/gnunet/social/host.cpp \
    src/gnunet/social/guest.cpp \
    src/settings/settings.cpp \
    src/util/helpers.cpp \
    src/util/qrimageprovider.cpp

RESOURCES += qml.qrc

# Additional import path used to resolve QML modules in the code model of Qt Creator
QML_IMPORT_PATH =

# Default rules for deployment.
include(deployment.pri)

HEADERS += \
    src/app.h \
    src/gnunet.h \
    src/gnunet/gnunet.h \
    src/model/models.h \
    src/model/EgoListModel.h \
    src/model/NymListModel.h \
    src/model/PlaceListModel.h \
    src/model/ThreadListModel.h \
    src/model/ThreadModel.h \
    src/gnunet/social/socialapp.h \
    src/gnunet/social/nym.h \
    src/gnunet/social/ego.h \
    src/gnunet/social/modifier.h \
    src/gnunet/social/message.h \
    src/gnunet/social/place.h \
    src/gnunet/social/host.h \
    src/gnunet/social/guest.h \
    src/settings/settings.h \
    src/util/helpers.h \
    src/util/qrimageprovider.h

CONFIG += qt debug
QT = core gui qml quick widgets

TARGET = secushare