-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlibwa-qt4.pro
86 lines (78 loc) · 2.07 KB
/
libwa-qt4.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
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
77
78
79
80
81
82
83
84
85
86
TEMPLATE = lib
TARGET = wa-qt4
isEmpty(CURRENT_RPATH_DIR) {
target.path = /usr/lib
} else {
message("$$TARGET QMAKE_RPATHDIR and PATH is set to $$CURRENT_RPATH_DIR")
target.path = $$CURRENT_RPATH_DIR
QMAKE_RPATHDIR += $$INSTALL_ROOT$$CURRENT_RPATH_DIR
}
VERSION = 1.0.0
QT += network sql
CONFIG += dll
INSTALLS += target
DEFINES += LIBWA_LIBRARY
LIBS += -laxolotl
LIBS += -lcurve25519
HEADERS += \
src/waregistration.h \
src/libwa_global.h \
src/libwa.h \
src/waconnection.h \
src/waconnection_p.h \
src/warequest.h \
src/waconstants.h \
src/attributelist.h \
src/attributelistiterator.h \
src/bintreenodereader.h \
src/bintreenodewriter.h \
src/key.h \
src/keystream.h \
src/protocoltreenode.h \
src/protocoltreenodelist.h \
src/protocoltreenodelistiterator.h \
src/rc4.h \
src/qtrfc2898.h \
src/protocolexception.h \
src/waexception.h \
src/watokendictionary.h \
src/hmacsha1.h \
src/json.h \
src/axolotl/litesignedprekeystore.h \
src/axolotl/litesessionstore.h \
src/axolotl/liteprekeystore.h \
src/axolotl/liteidentitykeystore.h \
src/axolotl/liteaxolotlstore.h \
src/mediadownloader.h
SOURCES += \
src/waregistration.cpp \
src/waconnection.cpp \
src/warequest.cpp \
src/attributelist.cpp \
src/attributelistiterator.cpp \
src/bintreenodereader.cpp \
src/bintreenodewriter.cpp \
src/key.cpp \
src/keystream.cpp \
src/protocoltreenode.cpp \
src/protocoltreenodelist.cpp \
src/protocoltreenodelistiterator.cpp \
src/rc4.cpp \
src/qtrfc2898.cpp \
src/watokendictionary.cpp \
src/hmacsha1.cpp \
src/json.cpp \
src/axolotl/litesignedprekeystore.cpp \
src/axolotl/litesessionstore.cpp \
src/axolotl/liteprekeystore.cpp \
src/axolotl/liteidentitykeystore.cpp \
src/axolotl/liteaxolotlstore.cpp \
src/mediadownloader.cpp
lessThan(QT_MAJOR_VERSION, 5) {
HEADERS += \
src/qexception/qexception.h \
src/qtjson.h
SOURCES += \
src/qexception/qexception.cpp \
src/qtjson.cpp
}