forked from mellotanica/uARM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
qarm.pro
170 lines (162 loc) · 4.04 KB
/
qarm.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
QT += core gui widgets
TARGET = uarm
CONFIG += c++11 silent
QMAKE_LIBS += -ldl
QMAKE_LIBS += -lelf
CONFIG += qt debug
DEFINES += UARM_MACHINE_COMPILING
#DEFINES += UARM_DUMMY_DISASSEMBLER
HEADERS += \
armProc/aout.h \
armProc/ARMisa.h \
armProc/basic_types.h \
armProc/blockdev.h \
armProc/blockdev_params.h \
armProc/bus.h \
armProc/const.h \
armProc/cp15.h \
armProc/device.h \
armProc/event.h \
armProc/libvdeplug_dyn.h \
armProc/machine.h \
armProc/machine_config.h \
armProc/mpic.h \
armProc/processor.h \
armProc/pu.h \
armProc/ramMemory.h \
armProc/registers.h \
armProc/stoppoint.h \
armProc/Thumbisa.h \
armProc/time_stamp.h \
armProc/tlbentry.h \
armProc/types.h \
armProc/vde_network.h \
facilities/arch.h \
facilities/uARMconst.h \
facilities/uARMtypes.h \
qarm/add_breakpoint_dialog.h \
qarm/address_line_edit.h \
qarm/breakpoint_window.h \
qarm/flat_push_button.h \
qarm/guiConst.h \
qarm/hex_view.h \
qarm/hex_view_priv.h \
qarm/mainbar.h \
qarm/mac_id_edit.h \
qarm/machine_config_dialog.h \
qarm/machine_config_dialog_priv.h \
qarm/procdisplay.h \
qarm/qarm.h \
qarm/qarmmessagebox.h \
qarm/QLine.h \
qarm/ramview.h \
qarm/register_item_delegate.h \
qarm/select_structures_dialog.h \
qarm/stoppoint_list_model.h \
qarm/structures_window.h \
qarm/symbol_table_model.h \
qarm/terminal_view.h \
qarm/terminal_window.h \
qarm/terminal_window_priv.h \
qarm/tlb_model.h \
qarm/tlb_window.h \
qarm/ui_utils.h \
services/debug.h \
services/debug_session.h \
services/disass.h \
services/error.h \
services/json.h \
services/lang.h \
services/symbol_table.h \
services/util.h \
services/utility.h \
services/elf2arm.h
SOURCES += \
armProc/ARMisa.cc \
armProc/blockdev.cc \
armProc/bus.cc \
armProc/cp15.cc \
armProc/device.cc \
armProc/event.cc \
armProc/machine.cc \
armProc/machine_config.cc \
armProc/mpic.cc \
armProc/processor.cc \
armProc/stoppoint.cc \
armProc/Thumbisa.cc \
armProc/time_stamp.cc \
armProc/tlbentry.cpp \
armProc/vde_network.cc \
qarm/add_breakpoint_dialog.cc \
qarm/address_line_edit.cc \
qarm/breakpoint_window.cc \
qarm/flat_push_button.cc \
qarm/hex_view.cc \
qarm/mac_id_edit.cc \
qarm/machine_config_dialog.cc \
qarm/main.cc \
qarm/mainbar.cc \
qarm/procdisplay.cc \
qarm/qarm.cc \
qarm/qarmmessagebox.cpp \
qarm/ramview.cc \
qarm/register_item_delegate.cc \
qarm/select_structures_dialog.cc \
qarm/stoppoint_list_model.cc \
qarm/structures_window.cc \
qarm/symbol_table_model.cc \
qarm/terminal_view.cc \
qarm/terminal_window.cc \
qarm/tlb_model.cc \
qarm/tlb_window.cc \
qarm/ui_utils.cc \
services/debug.cc \
services/debug_session.cc \
services/disass.c \
services/elf2arm.cc \
services/error.cc \
services/json.cc \
services/symbol_table.cc \
services/utility.cc
OTHER_FILES += \
assemble_BIOS \
compile \
config.h.in \
configure \
configure.ac \
default/uarm \
facilities/BIOS \
facilities/BIOS.s \
facilities/bios_const.h \
facilities/crti.o \
facilities/crti.s \
facilities/crtso.o \
facilities/crtso.s \
facilities/libdiv.o \
facilities/libdiv.s \
facilities/libuarm.h \
facilities/libuarm.o \
facilities/libuarm.s \
icons/machine_settings-22.png \
icons/pause.png \
icons/play.png \
icons/poweron.png \
icons/reset.png \
icons/step.png \
icons/window_default-48.png \
install.sh \
ldscript/elf32ltsarm.h.uarmaout.x \
ldscript/elf32ltsarm.h.uarmcore.x \
README.txt \
test/helloWorld.c \
uarm.icns
DISTFILES += \
todo.txt
macx {
INCLUDEPATH += /usr/local/include
LIBS += -L/usr/local/lib
HEADERS += services/fmemopen.h
SOURCES += services/fmemopen.c
ICON = uarm.icns
DEFINES += MACOS_BUILD
}