aboutsummaryrefslogtreecommitdiff
path: root/tools/buildsteps/windows/win32-uwp/BuildSetup.bat
blob: 545f0d7a48519c9e2a267975750d89957a17d8fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@ECHO OFF

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

SET cmakeGenerator=Visual Studio %vsver%
SET TARGET_ARCHITECTURE=x86
SET cmakeProps=-DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION=%UCRTVersion%

CALL BuildSetup.bat %*
POPD