blob: 2856a98346791097a00f3d45911a83b010fbce90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
@echo off
if exist vcxsrv.*.installer.exe del vcxsrv.*.installer.exe
if "%VS2008%"=="1" goto vs2008
copy %systemroot%\system32\msvcr100.dll
copy %systemroot%\system32\msvcr100d.dll
"C:\Program Files\NSIS\makensis.exe" vcxsrv.nsi
del msvcr100.dll
del msvcr100d.dll
goto end
:vs2008
python genruntimeinclude.py
"C:\Program Files\NSIS\makensis.exe" /DVS2008=1 vcxsrv.nsi
del runtime
:end
|