mirror of
https://github.com/lifting-bits/sleigh
synced 2026-06-21 13:56:12 +00:00
doc: Add README doc
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
# 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="<path where sleigh will install>" \
|
||||
-G Ninja \
|
||||
../
|
||||
cmake --build .
|
||||
cmake --build . --target install
|
||||
```
|
||||
Reference in New Issue
Block a user