From 2c9d329a710ef234dff26cc293b11bb4225585cf Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh <aquynh@gmail.com> Date: Fri, 29 Apr 2016 08:01:35 +0800 Subject: [PATCH] remove 'rmdir /S/Q' from nmake-*.bat --- nmake-dll.bat | 1 - nmake-lib.bat | 1 - 2 files changed, 2 deletions(-) diff --git a/nmake-dll.bat b/nmake-dll.bat index 3c4dd43..1c42927 100644 --- a/nmake-dll.bat +++ b/nmake-dll.bat @@ -2,7 +2,6 @@ :: Build Keystone DLL (keystone.dll) on Windows with CMake & Nmake :: By Nguyen Anh Quynh, 2016 -rmdir /S /Q . cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DLLVM_TARGETS_TO_BUILD="all" -G "NMake Makefiles" .. nmake diff --git a/nmake-lib.bat b/nmake-lib.bat index 50cb169..f4fb40a 100644 --- a/nmake-lib.bat +++ b/nmake-lib.bat @@ -2,7 +2,6 @@ :: Build Keystone static library (keystone.lib) on Windows with CMake & Nmake :: By Nguyen Anh Quynh, 2016 -rmdir /S /Q . cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF -DLLVM_TARGETS_TO_BUILD="all" -G "NMake Makefiles" .. nmake -- GitLab