blob: 7c2d3f1aae76c88168fdb1b0917ab3280ae6ad8d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
:: Setup VS2015 build environment
@call "%VS140COMNTOOLS%VsdevCmd.bat"
@set ROOT_PATH=%~dp0..\..\compiler
:: Xbox targets
@devenv "%ROOT_PATH%\vc14xboxone-cmake\BlastAll.sln" /rebuild "debug"
@if %ERRORLEVEL% neq 0 goto ERROR
@devenv "%ROOT_PATH%\vc14xboxone-cmake\BlastAll.sln" /rebuild "profile"
@if %ERRORLEVEL% neq 0 goto ERROR
:: Success
@exit /B 0
:ERROR
@echo Failure while building *Xbox One* targets!
@exit /B 1
|