diff options
Diffstat (limited to 'tracker-rs/rs_impl/attic/build.bat')
-rw-r--r-- | tracker-rs/rs_impl/attic/build.bat | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/tracker-rs/rs_impl/attic/build.bat b/tracker-rs/rs_impl/attic/build.bat index 3d5e8bc0..9fa3f859 100644 --- a/tracker-rs/rs_impl/attic/build.bat +++ b/tracker-rs/rs_impl/attic/build.bat @@ -1,29 +1,29 @@ -@echo off
-
-setlocal
-
-IF DEFINED VS150COMNTOOLS (
- if exist "%VS150COMNTOOLS%\..\..\VC\vcvarsall.bat" (
- set vs_dir="%VS150COMNTOOLS%\..\..\VC"
- set vs_64=amd64
- ) else (
- rem it installed vcvarsall.bat here for me for some reason -sh 20160827
- set vs_dir="%VS150COMNTOOLS%\..\ide\vc"
- set vs_64=amd64
- )) else (
- set vs_dir="%VS140COMNTOOLS%\..\..\VC"
- set vs_64=amd64
- )
-
-cd /d "%~dp0"
-if %errorlevel% neq 0 exit /b 1
-
-set rs_objs=ftnoir_tracker_rs_impl.obj libpxc.obj
-
-set rs_subdir=ia32&set vs_var=x86
-call ".\build_common.bat" || exit /b 1
-
-set rs_subdir=amd64&set vs_var=%vs_64%
-call ".\build_common.bat" || exit /b 1
-
-exit /b 0
+@echo off + +setlocal + +IF DEFINED VS150COMNTOOLS ( + if exist "%VS150COMNTOOLS%\..\..\VC\vcvarsall.bat" ( + set vs_dir="%VS150COMNTOOLS%\..\..\VC" + set vs_64=amd64 + ) else ( + rem it installed vcvarsall.bat here for me for some reason -sh 20160827 + set vs_dir="%VS150COMNTOOLS%\..\ide\vc" + set vs_64=amd64 + )) else ( + set vs_dir="%VS140COMNTOOLS%\..\..\VC" + set vs_64=amd64 + ) + +cd /d "%~dp0" +if %errorlevel% neq 0 exit /b 1 + +set rs_objs=ftnoir_tracker_rs_impl.obj libpxc.obj + +set rs_subdir=ia32&set vs_var=x86 +call ".\build_common.bat" || exit /b 1 + +set rs_subdir=amd64&set vs_var=%vs_64% +call ".\build_common.bat" || exit /b 1 + +exit /b 0 |