diff --git a/cmake.sh b/cmake.sh new file mode 100755 index 000000000..c86daa4ec --- /dev/null +++ b/cmake.sh @@ -0,0 +1,10 @@ +# Capstone disassembler engine (www.capstone-engine.org) +# Build Capstone libs (libcapstone.so & libcapstone.a) on *nix with CMake & make +# By Nguyen Anh Quynh, 2019 + +# Uncomment below line to compile in Diet mode +# cmake -DCMAKE_BUILD_TYPE=Release -DCAPSTONE_BUILD_DIET=ON .. + +cmake -DCMAKE_BUILD_TYPE=Release .. + +make -j8