-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmes.pro
44 lines (39 loc) · 881 Bytes
/
admes.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
QT -= gui
QT += network core
CONFIG += c++11 console
CONFIG -= app_bundle
DEFINES += QT_DEPRECATED_WARNINGS
win32{
INCLUDEPATH += $$PWD/libs/mpir
HEADERS += $$PWD/libs/mpir/mpir.h
LIBS += $$PWD/libs/mpir/mpir.dll
LIBS += libws2_32
}else{
MPIR_H{
DEFINES += MPIR_H
LIBS += -lmpir
} else {
LIBS += -lgmp
}
}
SOURCES += \
src/main.cpp \
src/control.cpp \
src/connection.cpp \
src/chat.cpp \
src/common.cpp \
src/account.cpp \
src/crypto/AES.cpp \
src/crypto/ECC.cpp \
src/crypto/prng.cpp \
src/crypto/EC_common.cpp
HEADERS += \
src/control.h \
src/connection.h \
src/chat.h \
src/common.h \
src/account.h \
src/crypto/AES.h \
src/crypto/ECC.h \
src/crypto/prng.h \
src/crypto/EC_common.h