Skip to content

houzeyhoo/winhwbp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WinHwBp

A hardware breakpoint management library for x86/x64 Windows.

This is a revision of one of my older projects. Hopefully, somebody will find this useful.

Usage

The library is designed to be simple and self-documenting. The header file contains documentation for the entire API surface. For a complete tutorial, see the example program.

Integration

The library uses CMake as its build system. You can integrate it with your project in two ways:

Subdirectory

add_subdirectory(deps/winhwbp)
target_link_libraries(your_project PRIVATE winhwbp::winhwbp)

System Install

First, install the library system-wide:

cmake -B build
cmake --build build --config Release
cmake --install build

Then in your project:

find_package(winhwbp CONFIG REQUIRED)
target_link_libraries(your_project PRIVATE winhwbp::winhwbp)

About

Hardware breakpoint management library for x86/x64 Windows.

Resources

License

Stars

Watchers

Forks

Contributors