summaryrefslogtreecommitdiff
path: root/secushare.pro
blob: de1d872634bb9ddd7a561e0fd2aed6afa7816e22 (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
# 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 -lgnunetarm -lgnunetsocial -lgnunetpsycutil -lgnunetfriends -lextractor -lqrencode

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

SOURCES += src/main.cpp \
    src/app.cpp \
    src/model/models.cpp \
    src/model/EgoListModel.cpp \
    src/model/PlaceListModel.cpp \
    src/model/ThreadModel.cpp \
    src/gnunet/gnunet.cpp \
    src/social/socialapp.cpp \
    src/social/nym.cpp \
    src/social/ego.cpp \
    src/social/modifier.cpp \
    src/social/message.cpp \
    src/social/place.cpp \
    src/social/host.cpp \
    src/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/PlaceListModel.h \
    src/model/ThreadModel.h \
    src/social/socialapp.h \
    src/social/nym.h \
    src/social/ego.h \
    src/social/modifier.h \
    src/social/message.h \
    src/social/place.h \
    src/social/host.h \
    src/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