-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLtDbgGui.pro
106 lines (94 loc) · 3.78 KB
/
LtDbgGui.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#-------------------------------------------------
#
# Project created by QtCreator 2019-11-01T12:02:09
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = LtDbgGui
TEMPLATE = app
INCLUDEPATH += $$PWD\LtDbg\LtDbg
INCLUDEPATH += $$PWD\LtDbg\elfio
RESOURCES = icons\iconCmdWidget.png icons\iconStack.png icons\iconDisassembly.png
# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
CONFIG += c++11
SOURCES += \
LtDbg/LtDbg/Utils/Disassembler.cpp \
LtDbg/LtDbg/Utils/Registers.cpp \
LtDbg/LtDbg/Utils/StringUtils.cpp \
LtDbg/LtDbg/Utils/SymbolsHelper.cpp \
LtDbg/LtDbg/CmdManager.cpp \
LtDbg/LtDbg/Com.cpp \
LtDbg/LtDbg/Commands.cpp \
LtDbg/LtDbg/Dbg.cpp \
asmwidget.cpp \
cmdwidget.cpp \
main.cpp \
mainwindow.cpp \
parameters.cpp \
stacktracewidget.cpp \
debuggermanager.cpp \
LtDbg/LtDbg/Utils/IdtUtils.cpp \
LtDbg/LtDbg/Utils/ManglingHelper.cpp \
symbolswindow.cpp
HEADERS += \
mainwindow.h \
asmwidget.h \
cmdwidget.hpp \
parameters.h \
stacktracewidget.h \
LtDbg/elfio/elfio/elf_types.hpp \
LtDbg/elfio/elfio/elfio.hpp \
LtDbg/elfio/elfio/elfio_dump.hpp \
LtDbg/elfio/elfio/elfio_dynamic.hpp \
LtDbg/elfio/elfio/elfio_header.hpp \
LtDbg/elfio/elfio/elfio_note.hpp \
LtDbg/elfio/elfio/elfio_relocation.hpp \
LtDbg/elfio/elfio/elfio_section.hpp \
LtDbg/elfio/elfio/elfio_segment.hpp \
LtDbg/elfio/elfio/elfio_strings.hpp \
LtDbg/elfio/elfio/elfio_symbols.hpp \
LtDbg/elfio/elfio/elfio_utils.hpp \
LtDbg/LtDbg/LtKinc/ltkinc.h \
LtDbg/LtDbg/Utils/Disassembler.hpp \
LtDbg/LtDbg/Utils/Registers.hpp \
LtDbg/LtDbg/Utils/StringUtils.hpp \
LtDbg/LtDbg/Utils/SymbolsHelper.hpp \
LtDbg/LtDbg/CmdManager.hpp \
LtDbg/LtDbg/Com.hpp \
LtDbg/LtDbg/Commands.hpp \
LtDbg/LtDbg/Dbg.hpp \
LtDbg/LtDbg/Exceptions.hpp \
LtDbg/LtDbg/Response.hpp \
LtDbg/udis/libudis86/extern.h \
LtDbg/udis/libudis86/itab.h \
LtDbg/udis/libudis86/syn.h \
LtDbg/udis/libudis86/types.h \
LtDbg/udis/libudis86/udint.h \
LtDbg/udis/udis86.h \
asmwidget.h \
cmdwidget.hpp \
mainwindow.h \
parameters.h \
stacktracewidget.h \
debuggermanager.h \
LtDbg/LtDbg/Utils/IdtUtils.hpp \
LtDbg/LtDbg/Utils/ManglingHelper.hpp \
symbolswindow.h
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
unix:!macx|win32: LIBS += -L$$PWD/'../../../Visual Studio 2017/Projects/LtDbg/udis/BuildVS2010/Build/Bin/x86/' -llibudis86
INCLUDEPATH += $$PWD/'../../../Visual Studio 2017/Projects/LtDbg/udis/BuildVS2010/Build/Bin/x86'
DEPENDPATH += $$PWD/'../../../Visual Studio 2017/Projects/LtDbg/udis/BuildVS2010/Build/Bin/x86'
win32-g++: PRE_TARGETDEPS += $$PWD/'../../../Visual Studio 2017/Projects/LtDbg/udis/BuildVS2010/Build/Bin/x86/libudis86.lib'
#else:unix:!macx|win32-g++: PRE_TARGETDEPS += $$PWD/'../../../Visual Studio 2017/Projects/LtDbg/udis/BuildVS2010/Build/Bin/x64/liblibudis86.a'