From 6a916acb2040109818c4869695f67e417a8c93bf Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh <aquynh@gmail.com> Date: Mon, 13 Mar 2017 20:41:51 +0800 Subject: [PATCH] update nmake*.bat on the position of generated libraries --- nmake-dll.bat | 2 ++ nmake-lib.bat | 2 ++ 2 files changed, 4 insertions(+) diff --git a/nmake-dll.bat b/nmake-dll.bat index 1c42927..a616ff9 100644 --- a/nmake-dll.bat +++ b/nmake-dll.bat @@ -2,6 +2,8 @@ :: Build Keystone DLL (keystone.dll) on Windows with CMake & Nmake :: By Nguyen Anh Quynh, 2016 +:: This generates .\llvm\bin\keystone.dll + 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 f4fb40a..ddacf7f 100644 --- a/nmake-lib.bat +++ b/nmake-lib.bat @@ -2,6 +2,8 @@ :: Build Keystone static library (keystone.lib) on Windows with CMake & Nmake :: By Nguyen Anh Quynh, 2016 +:: This generates .\llvm\lib\keystone.lib + cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF -DLLVM_TARGETS_TO_BUILD="all" -G "NMake Makefiles" .. nmake -- GitLab