jamulus/windows/deploy_windows.bat
Volker Fischer 41e910af95 bug fix
2011-01-24 21:32:42 +00:00

23 lines
650 B
Batchfile
Executable File

@echo off
rem settings and check ---------------------------------------------------------
set NSIS_PATH=%PROGRAMFILES%\NSIS
if "%VSINSTALLDIR%" == "" goto vsenvproblem
rem clean and compile solution -------------------------------------------------
devenv llcon.sln /clean "Release|Win32"
devenv llcon.sln /build "Release|Win32"
rem create installer -----------------------------------------------------------
"%NSIS_PATH%\makensis.exe" installer.nsi
move llconinstaller.exe ../deploy/llcon-version-installer.exe
goto endofskript
:vsenvproblem
echo Use the Visual Studio Command Prompt to call this skript
:endofskript