A 64-bit Windows C/C++ Debugger project which contains 3 things:
- An easy to use API for interfacing with Windows debugging utilities (code in
source/lgdb
) - Debugger through a command line interface (code in
source/lgdbcli
) - A test program (code in
source/lgdbtest
) - (COMING SOON) Debugger through a graphical user interface (code in
source/lgdbgui
)
- Install CMake - preferably make it available in your PATH
- Make a build directory in the root of this repo (where CMakeLists.txt is located)
- If you wish to use the command line,
cd build
and then runcmake ..
- If you wish to use the GUI, set the
Where to build the binaries
tothe\path\to\project
\build, and where the source file is located tothe\path\to\project
, then click andConfigure
andGenerate