-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathOrion_Qt.pro
50 lines (41 loc) · 976 Bytes
/
Orion_Qt.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
#-------------------------------------------------
#
# Project created by QtCreator 2016-10-04T12:53:13
#
#-------------------------------------------------
VERSION = 1.0.2.0
DEFINES += APP_VERSION=\\\"$$VERSION\\\"
DEFINES += NOMINMAX
LIBS += -lgdi32 -lMsimg32 -lWinmm -lUser32 -lShell32
TARGET = Orion
TARGET_EXT = .dll
TEMPLATE = lib
CONFIG += dll
CONFIG += c++11
CONFIG -= app_bundle
CONFIG -= qt
INCLUDEPATH += $$PWD/Orion/
QMAKE_LFLAGS +=-static-libgcc -static-libstdc++
SOURCES += \
Orion/dllmain.cpp \
Orion/DataStream.cpp \
Orion/Global.cpp \
Orion/Crypt/GameCrypt.cpp \
Orion/Crypt/LoginCrypt.cpp \
Orion/Crypt/md5.cpp \
Orion/Crypt/twofish.cpp
unix {
target.path = /usr/lib
INSTALLS += target
}
HEADERS += \
Orion/DataStream.h \
Orion/Global.h \
Orion/OrionDef.h \
Orion/resource.h \
Orion/Crypt/AES.H \
Orion/Crypt/GameCrypt.h \
Orion/Crypt/LoginCrypt.h \
Orion/Crypt/md5.h \
Orion/Crypt/platform.H \
Orion/Crypt/TABLE.H