mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-10-30 21:20:10 +00:00
28 lines
928 B
Batchfile
28 lines
928 B
Batchfile
@echo off
|
|
cd /d "%~dp0"
|
|
rem Put in the base path in which Visual Studio is installed, default would be C:\Program Files (x86)
|
|
|
|
set VS_Base_Path=C:\Program Files (x86)
|
|
|
|
if exist "%VS_Base_Path%\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat" goto vs2019
|
|
if exist "%VS_Base_Path%\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat" goto vs2017
|
|
if exist "%VS_Base_Path%\Microsoft Visual Studio 14.0\VC\bin\amd64\vcvars64.bat" goto vs14
|
|
if exist ".\sdk_standalone\set_vars64.bat" goto gitlabci
|
|
|
|
:vs2019
|
|
call "%VS_Base_Path%\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"
|
|
goto batend
|
|
|
|
:vs2017
|
|
call "%VS_Base_Path%\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat"
|
|
goto batend
|
|
|
|
:vs14
|
|
call "%VS_Base_Path%\Microsoft Visual Studio 14.0\VC\bin\amd64\vcvars64.bat"
|
|
goto batend
|
|
|
|
:gitlabci
|
|
call ".\sdk_standalone\set_vars64.bat"
|
|
goto batend
|
|
:batend
|