mirror of
https://github.com/asmjit/asmjit.git
synced 2025-12-18 04:54:36 +03:00
Added Visual Studio 2015 scripts and fixed asmjit_test_x86 which now compiles under VS2015 Added StringLogger::getLength() Added methods to X86Compiler to create a variable operand by its ID
10 lines
209 B
Batchfile
10 lines
209 B
Batchfile
@echo off
|
|
|
|
set ASMJIT_CURRENT_DIR=%CD%
|
|
set ASMJIT_BUILD_DIR="build_vs2015_x86"
|
|
|
|
mkdir ..\%ASMJIT_BUILD_DIR%
|
|
cd ..\%ASMJIT_BUILD_DIR%
|
|
cmake .. -G"Visual Studio 14" -DASMJIT_BUILD_TEST=1
|
|
cd %ASMJIT_CURRENT_DIR%
|