mirror of
https://github.com/LegacyUpdate/LegacyUpdate.git
synced 2025-01-22 14:12:07 -05:00
47 lines
1.6 KiB
Batchfile
47 lines
1.6 KiB
Batchfile
@echo off
|
|
setlocal enabledelayedexpansion
|
|
cd %~dp0
|
|
|
|
set ProgramFiles32=%ProgramFiles%
|
|
if "%ProgramFiles(x86)%" neq "" set ProgramFiles32=%ProgramFiles(x86)%
|
|
|
|
path %ProgramFiles32%\NSIS\Bin;%path%
|
|
|
|
:: Make sure we have MakeNSIS
|
|
if not exist "%ProgramFiles32%\NSIS\Bin\makensis.exe" (
|
|
echo NSIS not found. Refer to README.md. >&2
|
|
exit /b 1
|
|
)
|
|
|
|
:: Find Visual Studio installation
|
|
if exist "%ProgramFiles32%\Microsoft Visual Studio\Installer\vswhere.exe" (
|
|
:: Get modern Visual Studio install path
|
|
for /f "usebackq tokens=*" %%i in (`"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" -latest -property installationPath`) do set VSPath=%%i
|
|
set "vcvarsall=!VSPath!\VC\Auxiliary\Build\vcvarsall.bat"
|
|
if "%errorlevel%" neq "0" exit /b %errorlevel%
|
|
) else if exist "%VS100COMNTOOLS%\..\..\VC\vcvarsall.bat" (
|
|
:: Visual Studio 2010
|
|
set "vcvarsall=%VS100COMNTOOLS%\..\..\VC\vcvarsall.bat"
|
|
if "%errorlevel%" neq "0" exit /b %errorlevel%
|
|
) else (
|
|
echo Visual Studio not found. Refer to README.md. >&2
|
|
exit /b 1
|
|
)
|
|
|
|
:: Clean
|
|
call "%vcvarsall%" x86
|
|
msbuild LegacyUpdate.sln /m /p:Configuration=Release /p:Platform=Win32 /t:clean
|
|
if "%errorlevel%" neq "0" exit /b %errorlevel%
|
|
msbuild LegacyUpdate.sln /m /p:Configuration=Release /p:Platform=x64 /t:clean
|
|
if "%errorlevel%" neq "0" exit /b %errorlevel%
|
|
|
|
:: Build DLL
|
|
msbuild LegacyUpdate.sln /m /p:Configuration=Release /p:Platform=Win32 %*
|
|
if "%errorlevel%" neq "0" exit /b %errorlevel%
|
|
call "%vcvarsall%" x64
|
|
msbuild LegacyUpdate.sln /m /p:Configuration=Release /p:Platform=x64 %*
|
|
if "%errorlevel%" neq "0" exit /b %errorlevel%
|
|
|
|
:: Build NSIS
|
|
makensis setup\setup.nsi
|
|
if "%errorlevel%" neq "0" exit /b %errorlevel%
|