Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tetsuo-cpp/sleigh
CMake wrapper for SLEIGH
https://github.com/tetsuo-cpp/sleigh
Last synced: 3 days ago
JSON representation
CMake wrapper for SLEIGH
- Host: GitHub
- URL: https://github.com/tetsuo-cpp/sleigh
- Owner: tetsuo-cpp
- Created: 2021-10-06T12:18:50.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-10-11T13:22:35.000Z (over 3 years ago)
- Last Synced: 2024-12-19T06:43:21.804Z (28 days ago)
- Language: CMake
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SLEIGH
SLEIGH is a machine language translation and disassembly engine that is leveraged as part of the Ghidra decompiler.
This repository exposes a CMake build for SLEIGH so that it can be integrated into other projects.
### Build
```sh
mkdir build/
cd build/
cmake \
-DCMAKE_INSTALL_PREFIX="" \
-G Ninja \
../
cmake --build .
cmake --build . --target install
```