mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-04 12:24:11 +01:00
449474b66c
Moved obsolete Wix installer into Experimental branch. NSIS installer moved one level up. Now it supports new build directory structure, does not require to be copied into it and can be built using packaging/winx86/Makefile.cmd or as a qmake-generated "installer" target (using "make installer"). NOTE: this target will NOT be built automatically, you have to build it yourself. Install system requires Unicode NSIS installer and optionally uses SubWCRev.exe utility (from TortoiseSVN package) to extract some build info from local SVN copy (like revision number, etc.). This info then is available as a properties of installer executable and also used in the installer's executable file name. SubWCRev utility is optional, if it is not found - no extra info will be generated and used. Also fixed unescaped backslash in openpilotgcs.pri (please check that it does not break !win32 builds). git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@2584 ebee16cc-31ac-478f-84a7-5cbb03baadba
24 lines
777 B
Batchfile
24 lines
777 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 installed by TortoiseSVN or 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
|
|
"%NSISC%" /V2 %NSI%
|