mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-30 08:24:11 +01:00
7195862d77
This will allow us to build a parent project for qt-creator that sits above both openpilotgcs and uavobjgenerator so that we can build both projects at the same time. git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@2528 ebee16cc-31ac-478f-84a7-5cbb03baadba
26 lines
753 B
Batchfile
26 lines
753 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 See OpenPilotGCS.nsi for more details.
|
|
rem
|
|
|
|
rem Set path to NSIS compiler
|
|
set NSIS=%ProgramFiles%/NSIS/Unicode
|
|
set NSISC=%NSIS%/makensis.exe
|
|
|
|
rem Input script file
|
|
set NSI=OpenPilotGCS.nsi
|
|
|
|
rem Build installer
|
|
"%NSISC%" /V2 %NSI%
|