-
Notifications
You must be signed in to change notification settings - Fork 0
/
libgraft.pri
71 lines (60 loc) · 1.79 KB
/
libgraft.pri
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
INCLUDEPATH += $$PWD/include \
$$PWD/include/epee \
$$PWD/include/external/easylogging++ \
$$PWD/include/wallet
android {
INCLUDEPATH += $$PWD/include/external/android
LIBS += -L$$PWD/lib/graft/android/$$ANDROID_TARGET_ARCH \
-lwallet_merged \
-lcncrypto \
-lepee \
-leasylogging \
-lunbound \
-llmdb \
-lsodium
LIBS += -L$$PWD/lib/boost/android/$$ANDROID_TARGET_ARCH/
LIBS += -lboost_filesystem \
-lboost_program_options \
-lboost_regex \
-lboost_serialization \
-lboost_system \
-lboost_thread \
-lboost_chrono
LIBS += -L$$PWD/lib/openssl/android/$$ANDROID_TARGET_ARCH/ \
-lssl -lcrypto
} else {
linux {
LIBS += -L$$PWD/lib/graft/linux
LIBS += -lwallet_merged -lutils -leasylogging -lepee -lunbound -llmdb -lssl -lcrypto -lsodium
LIBS += -lboost_filesystem \
-lboost_program_options \
-lboost_regex \
-lboost_serialization \
-lboost_system \
-lboost_thread
}
}
ios {
LIBS += -L$$PWD/lib/graft/ios \
-leasylogging \
-lepee \
-lcncrypto \
-lwallet_merged \
-lunbound
LIBS += -L$$PWD/lib/openssl/lib/ios -lcrypto -lssl
LIBS += -L$$PWD/lib/boost/lib/ios -lboost
} else {
mac {
LIBS += -L$$PWD/../libwallet/wallet/mac -leasylogging -lepee
LIBS += -L$$PWD/lib/mac -lcncrypto
LIBS += -L$$PWD/lib/graft/mac -lwallet_merged -leasylogging -lepee -lunbound
LIBS += -L$$PWD/lib/openssl/mac -lcrypto -lssl
LIBS += -L$$PWD/lib/boost/mac \
-lboost_system \
-lboost_program_options \
-lboost_filesystem \
-lboost_serialization \
-lboost_thread-mt \
-lboost_regex
}
}