Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
k-takata committed Dec 27, 2015
1 parent cd6279d commit ca1dc3c
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions src/appveyor.bat
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ curl -L "http://downloads.sourceforge.net/project/luabinaries/5.3.2/Windows%%20L
:: Perl
appveyor DownloadFile http://downloads.activestate.com/ActivePerl/releases/5.22.0.2200/ActivePerl-5.22.0.2200-MSWin32-x86-64int-299195.zip -FileName perl.zip
7z x perl.zip -oC:\ > nul
for %%i in (C:\ActivePerl*) do move %%i C:\Perl522
for /d %%i in (C:\ActivePerl*) do move %%i C:\Perl522
:: Tcl
appveyor DownloadFile http://downloads.activestate.com/ActiveTcl/releases/8.6.4.1/ActiveTcl8.6.4.1.299124-win32-ix86-threaded.exe -FileName tcl.exe
start /wait tcl.exe --directory C:\Tcl
Expand All @@ -42,12 +42,16 @@ curl -L "http://downloads.sourceforge.net/project/luabinaries/5.3.2/Windows%%20L
:: Perl
appveyor DownloadFile http://downloads.activestate.com/ActivePerl/releases/5.22.0.2200/ActivePerl-5.22.0.2200-MSWin32-x64-299195.zip -FileName perl.zip
7z x perl.zip -oC:\ > nul
for %%i in (C:\ActivePerl*) do move %%i C:\Perl522
for /d %%i in (C:\ActivePerl*) do move %%i C:\Perl522
:: Tcl
appveyor DownloadFile http://downloads.activestate.com/ActiveTcl/releases/8.6.4.1/ActiveTcl8.6.4.1.299124-win32-x86_64-threaded.exe -FileName tcl.exe
start /wait tcl.exe --directory C:\Tcl

path C:\Perl522\perl\bin;%path%;C:\Lua;C:\Tcl\bin

where xsubpp
dir C:\Perl522\perl\lib\ExtUtils\typemap

@echo off
goto :eof

Expand All @@ -66,7 +70,8 @@ nmake -f Make_mvc2.mak CPU=i386 ^
PYTHON3_VER=34 DYNAMIC_PYTHON3=yes PYTHON3=C:\Python34 ^
LUA_VER=53 DYNAMIC_LUA=yes LUA=C:\Lua ^
TCL_VER=86 DYNAMIC_TCL=yes TCL=C:\Tcl ^
WINVER=0x500
WINVER=0x500 ^
|| exit 1
:: Build CUI version
nmake -f Make_mvc2.mak CPU=i386 ^
GUI=no OLE=no DIRECTX=no ^
Expand All @@ -76,10 +81,11 @@ nmake -f Make_mvc2.mak CPU=i386 ^
PYTHON3_VER=34 DYNAMIC_PYTHON3=yes PYTHON3=C:\Python34 ^
LUA_VER=53 DYNAMIC_LUA=yes LUA=C:\Lua ^
TCL_VER=86 DYNAMIC_TCL=yes TCL=C:\Tcl ^
WINVER=0x500
WINVER=0x500 ^
|| exit 1
:: Build translations
pushd po
nmake -f Make_mvc.mak GETTEXT_PATH=C:\cygwin\bin VIMRUNTIME=..\..\runtime install-all
nmake -f Make_mvc.mak GETTEXT_PATH=C:\cygwin\bin VIMRUNTIME=..\..\runtime install-all || exit 1
popd

@echo off
Expand All @@ -100,7 +106,8 @@ nmake -f Make_mvc2.mak CPU=AMD64 ^
PYTHON3_VER=34 DYNAMIC_PYTHON3=yes PYTHON3=C:\Python34-x64 ^
LUA_VER=53 DYNAMIC_LUA=yes LUA=C:\Lua ^
TCL_VER=86 DYNAMIC_TCL=yes TCL=C:\Tcl ^
WINVER=0x500
WINVER=0x500 ^
|| exit 1
:: Build CUI version
nmake -f Make_mvc2.mak CPU=AMD64 ^
GUI=no OLE=no DIRECTX=no ^
Expand All @@ -110,10 +117,11 @@ nmake -f Make_mvc2.mak CPU=AMD64 ^
PYTHON3_VER=34 DYNAMIC_PYTHON3=yes PYTHON3=C:\Python34-x64 ^
LUA_VER=53 DYNAMIC_LUA=yes LUA=C:\Lua ^
TCL_VER=86 DYNAMIC_TCL=yes TCL=C:\Tcl ^
WINVER=0x500
WINVER=0x500 ^
|| exit 1
:: Build translations
pushd po
nmake -f Make_mvc.mak GETTEXT_PATH=C:\cygwin\bin VIMRUNTIME=..\..\runtime install-all
nmake -f Make_mvc.mak GETTEXT_PATH=C:\cygwin\bin VIMRUNTIME=..\..\runtime install-all || exit 1
popd

@echo off
Expand Down

0 comments on commit ca1dc3c

Please sign in to comment.