From 738b7607b144879b0f7bd1e550a277a916cb47a4 Mon Sep 17 00:00:00 2001 From: Daniel Seiller Date: Mon, 2 Sep 2019 17:06:01 +0200 Subject: [PATCH] Update README.md,add prerequisites, build and install in one command --- ScrapHacks/README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/ScrapHacks/README.md b/ScrapHacks/README.md index abb7dca..17e1e79 100644 --- a/ScrapHacks/README.md +++ b/ScrapHacks/README.md @@ -1,11 +1,17 @@ -Open VS 2017 32-bit command prompt (`vcvars32.bat`) +## Prerequisites + +- Visual Studio 2017/2019 (others might work) +- CMake + +## Building + +Open VS 32-bit command prompt (`vcvars32.bat`) ```batch mkdir build cd build cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE="Release" -DCMAKE_INSTALL_PREFIX="" .. -cmake --build . -cmake --install . +cmake --build . --config Release --target install ``` this will drop the compiled files into `./build/bin`