24 lines
457 B
Batchfile
24 lines
457 B
Batchfile
@echo off
|
|
|
|
echo Emulating appveyor's environment.
|
|
|
|
cd /d %~dp0
|
|
cd ..\..
|
|
set APPVEYOR=True
|
|
set APPVEYOR_BUILD_FOLDER=%cd%
|
|
set Configuration=Debug
|
|
set Platform=x64
|
|
set PlatformToolset=""
|
|
REM set Platform=Win32
|
|
REM set PlatformToolset=v142
|
|
REM set PlatformToolset=Windows7.1SDK
|
|
|
|
echo APPVEYOR_BUILD_FOLDER set to '%APPVEYOR_BUILD_FOLDER%'
|
|
echo.
|
|
|
|
:: Return back to original folder
|
|
cd /d %~dp0
|
|
|
|
:: Leave the command prompt open
|
|
cmd.exe /k echo AppVeyor ready...
|