summaryrefslogtreecommitdiffstats
path: root/tools/buildsteps/windows/win32/BuildSetup.bat
blob: 0c10f4336c842c7dedd8bf12a5a05878cdd33b85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@ECHO OFF

PUSHD %~dp0\..

CALL vswhere.bat x86
IF ERRORLEVEL 1 (
  ECHO ERROR! BuildSetup.bat: Something went wrong when calling vswhere.bat
  POPD
  EXIT /B 1
)

SET cmakeGenerator=Visual Studio %vsver%
SET cmakeArch=Win32
SET TARGET_ARCHITECTURE=x86
SET TARGET_PLATFORM=%TARGET_ARCHITECTURE%

CALL BuildSetup.bat %*
POPD