mapnik/scripts/build-local.bat

29 lines
476 B
Batchfile
Raw Normal View History

2015-09-21 13:38:36 +02:00
@ECHO OFF
SETLOCAL
SET EL=0
ECHO =========== %~f0 ===========
SET APPVEYOR_REPO_COMMIT_MESSAGE=das ist ein test
2015-09-21 13:38:36 +02:00
SET MAPNIK_GIT=3.0.5
SET BOOST_VERSION=58
2015-09-21 14:04:28 +02:00
SET FASTBUILD=1
2015-09-21 13:38:36 +02:00
SET msvs_toolset=14
SET platform=x64
SET APPVEYOR_BUILD_FOLDER=%CD%
CALL scripts\build-appveyor.bat
IF %ERRORLEVEL% NEQ 0 GOTO ERROR
GOTO DONE
:ERROR
ECHO =========== ERROR %~f0 ===========
ECHO ERRORLEVEL^: %ERRORLEVEL%
SET EL=%ERRORLEVEL%
:DONE
ECHO =========== DONE %~f0 ===========
EXIT /b %EL%