blob: 8fd6e03de18f25e82239b4679f64fe5324fdd2bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
@ECHO OFF
PUSHD %~dp0\..
CALL vswhere.bat arm 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 cmakeArch=ARM
SET TARGET_ARCHITECTURE=arm
SET TARGET_PLATFORM=%TARGET_ARCHITECTURE%-uwp
SET cmakeProps=-DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION=%UCRTVersion%
CALL BuildSetup.bat %*
POPD
|