mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 17:55:08 +00:00

The HackStudio debugger integrates with LibDebug to provide source-level debugging. The user can set breakpoints at various positions in the source code, and then run the program in debug mode. When the program is stopped, the current execution position is displayed, and the user can insert/remove breakpoints, continue execution, or single step the program.
23 lines
453 B
Makefile
23 lines
453 B
Makefile
OBJS = \
|
|
Project.o \
|
|
ProjectFile.o \
|
|
TerminalWrapper.o \
|
|
FindInFilesWidget.o \
|
|
ProcessStateWidget.o \
|
|
FormEditorWidget.o \
|
|
FormWidget.o \
|
|
Editor.o \
|
|
EditorWrapper.o \
|
|
Locator.o \
|
|
Tool.o \
|
|
CursorTool.o \
|
|
WidgetTool.o \
|
|
WidgetTreeModel.o \
|
|
Debugger.o \
|
|
main.o
|
|
|
|
PROGRAM = HackStudio
|
|
|
|
LIB_DEPS = GUI Web VT Protocol Markdown Gfx IPC Thread Pthread Core JS Debug
|
|
|
|
include ../../Makefile.common
|