diff options
author | 2020-05-28 20:24:40 +0700 | |
---|---|---|
committer | 2020-05-28 20:24:40 +0700 | |
commit | 45615b7f4b7b50df29dc14bcb74fd13850bb7633 (patch) | |
tree | d2c8c1b93d68b3fb87c06060ff3f2435301dd3b9 /3rdparty/asmjit/tools/configure-vs-x86.bat | |
parent | 3ed842c01cb666533da31a0bc0907ef8bd4a0f63 (diff) |
asmjit: new 3rdparty library
Diffstat (limited to '3rdparty/asmjit/tools/configure-vs-x86.bat')
-rw-r--r-- | 3rdparty/asmjit/tools/configure-vs-x86.bat | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3rdparty/asmjit/tools/configure-vs-x86.bat b/3rdparty/asmjit/tools/configure-vs-x86.bat new file mode 100644 index 00000000000..7bc7b9d6717 --- /dev/null +++ b/3rdparty/asmjit/tools/configure-vs-x86.bat @@ -0,0 +1,9 @@ +@echo off + +set CURRENT_DIR=%CD% +set BUILD_DIR="build_vs_x86" + +mkdir ..\%BUILD_DIR% +cd ..\%BUILD_DIR% +cmake .. -G"Visual Studio 16" -A Win32 -DASMJIT_TEST=1 +cd %CURRENT_DIR% |