mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-30 08:24:11 +01:00
3787787404
- Fixed unescaped backslashes in openpilotgcs.pro, translations.pro, glc_lib.pro (don't like warnings). - Fixed comments in Windows installer batch file. - Changed Windows uninstaller section names for better readability. - Changed Windows installer executable properties (makes sense if you use SubWCRev). - temporary disabled Windows installer Spanish language until someone helps with translation (no changes for GCS itself). - small beautification of winx86.pro. - some changes in the top Makefile.cmd (more changeable parameters for batch build) git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@2609 ebee16cc-31ac-478f-84a7-5cbb03baadba
25 lines
826 B
Batchfile
25 lines
826 B
Batchfile
@echo off
|
|
rem
|
|
rem Project: OpenPilot
|
|
rem NSIS installer script file for OpenPilot GCS
|
|
rem The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2010-2011.
|
|
rem
|
|
rem This script requires Unicode NSIS 2.46 or higher:
|
|
rem http://www.scratchpaper.com/
|
|
rem
|
|
rem Optional SVN utility to get currently used SVN revision is SubWCRev.exe,
|
|
rem it is a part of TortoiseSVN package or is available separately:
|
|
rem http://sourceforge.net/projects/tortoisesvn/files/Tools/1.6.7/SubWCRev-1.6.7.18415.msi/download
|
|
rem
|
|
|
|
rem Set path to NSIS compiler
|
|
set NSIS=%ProgramFiles%/NSIS/Unicode
|
|
set NSISC=%NSIS%/makensis.exe
|
|
|
|
rem Input script file (in the same directory as this batch file)
|
|
for %%D in (%0) do set NSI=%%~dD%%~pD\openpilotgcs.nsi
|
|
|
|
rem Build installer
|
|
echo Generating Windows installer...
|
|
"%NSISC%" /V2 %NSI%
|