-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRDRasm.pro
77 lines (65 loc) · 2.03 KB
/
RDRasm.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
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++17
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
src/main.cpp \
src/rage/compiler.cpp \
src/rage/iopcode.cpp \
src/rage/opcodefactory.cpp \
src/rage/opcodes/enter.cpp \
src/rage/opcodes/helper.cpp \
src/rage/opcodes/include.cpp \
src/rage/opcodes/methods.cpp \
src/rage/opcodes/misc.cpp \
src/rage/opcodes/string.cpp \
src/rage/script.cpp \
src/util/crypto/aes256.cpp \
src/util/crypto/lzx.c \
src/util/util.cpp \
src/util/crypto/xcompress.cpp \
src/widgets/disassembler.cpp \
src/widgets/editdialog.cpp \
src/widgets/launchscreen.cpp \
src/widgets/opcodetable.cpp
HEADERS += \
src/rage/compiler.h \
src/rage/iopcode.h \
src/rage/opcodefactory.h \
src/rage/opcodes/enter.h \
src/rage/opcodes/float.h \
src/rage/opcodes/helper.h \
src/rage/opcodes/integer.h \
src/rage/opcodes/methods.h \
src/rage/opcodes/misc.h \
src/rage/opcodes/stack.h \
src/rage/opcodes/string.h \
src/rage/opcodes/vector.h \
src/rage/script.h \
src/util/crypto/aes256.h \
src/util/crypto/lzx.h \
src/util/util.h \
src/util/crypto/xcompress.h \
src/util/crypto/zconf.h \
src/util/crypto/zlib.h \
src/widgets/disassembler.h \
src/widgets/editdialog.h \
src/widgets/launchscreen.h \
src/widgets/opcodetable.h
FORMS += \
src/widgets/disassembler.ui \
src/widgets/editdialog.ui \
src/widgets/launchscreen.ui
include(lib/QHexView/QHexView.pri)
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
res/res.qrc
RC_ICONS = res/icon.ico
unix|win32: LIBS += -L$$PWD/lib/ -lzlib
INCLUDEPATH += $$PWD/.
DEPENDPATH += $$PWD/.