https://github.com/dibenso/hexdump
An application and library to dump and analyze binary files.
https://github.com/dibenso/hexdump
Last synced: 2 months ago
JSON representation
An application and library to dump and analyze binary files.
- Host: GitHub
- URL: https://github.com/dibenso/hexdump
- Owner: dibenso
- License: mit
- Created: 2021-06-09T02:33:04.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-15T23:10:50.000Z (almost 4 years ago)
- Last Synced: 2025-01-30T16:43:17.370Z (4 months ago)
- Language: C++
- Homepage:
- Size: 375 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hexdump 
An application and library to dump and analyze binary files.
# Download [](https://tooomm.github.io/github-release-stats/?username=dibenso&repository=Hexdump)
Download the [Latest Release](https://github.com/dibenso/Hexdump/releases).
# Running
```sh
.//bin/Hexdump.exe -i
```# Building with Windows
### Clone and run CMake
```sh
git clone [email protected]:dibenso/Hexdump.git
cd Hexdump
mkdir build
cd build
# replace -G option with your platforms generator
# See: https://cmake.org/cmake/help/latest/manual/cmake-generators.7.html
# Example with Visual Studio:
cmake -G "Visual Studio 16 2019" -A x64 ..
```
### Generate the installer
* Install [NSIS](https://nsis.sourceforge.io/Download) (Nullsoft Scriptable Install System).
* Open `Hexdump.sln` with Visual Studio
* Change `Debug` to `Release`
* Build `Hexdump`
* Build `PACKAGE`
* The installer, `Hexdump--.exe`, should be generated in the `build` directory