diff --git a/README.md b/README.md new file mode 100644 index 0000000..217bfcd --- /dev/null +++ b/README.md @@ -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="" \ + -G Ninja \ + ../ +cmake --build . +cmake --build . --target install +```