1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-02 10:24:11 +01:00

Add cloudconfig to installer

This commit is contained in:
Fredrik Larsson 2014-11-22 03:51:36 +11:00
parent b0cc9ce021
commit 3362c84ec5

View File

@ -1,4 +1,4 @@
# #
# Project: OpenPilot # Project: OpenPilot
# NSIS configuration file for OpenPilot GCS # NSIS configuration file for OpenPilot GCS
# The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2010-2014. # The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2010-2014.
@ -72,7 +72,7 @@
VIAddVersionKey "Comments" "${INSTALLER_NAME}. ${BUILD_DESCRIPTION}" VIAddVersionKey "Comments" "${INSTALLER_NAME}. ${BUILD_DESCRIPTION}"
VIAddVersionKey "CompanyName" "The OpenPilot Team, http://www.openpilot.org" VIAddVersionKey "CompanyName" "The OpenPilot Team, http://www.openpilot.org"
VIAddVersionKey "LegalTrademarks" "${PRODUCT_NAME} is a trademark of The OpenPilot Team" VIAddVersionKey "LegalTrademarks" "${PRODUCT_NAME} is a trademark of The OpenPilot Team"
VIAddVersionKey "LegalCopyright" "© 2010-2014 The OpenPilot Team" VIAddVersionKey "LegalCopyright" "© 2010-2014 The OpenPilot Team"
VIAddVersionKey "FileDescription" "${INSTALLER_NAME}" VIAddVersionKey "FileDescription" "${INSTALLER_NAME}"
;-------------------------------- ;--------------------------------
@ -93,7 +93,7 @@
;-------------------------------- ;--------------------------------
; Branding ; Branding
BrandingText "© 2010-2014 The OpenPilot Team, http://www.openpilot.org" BrandingText "© 2010-2014 The OpenPilot Team, http://www.openpilot.org"
!define MUI_ICON "${NSIS_DATA_TREE}\resources\openpilot.ico" !define MUI_ICON "${NSIS_DATA_TREE}\resources\openpilot.ico"
!define MUI_HEADERIMAGE !define MUI_HEADERIMAGE
@ -193,10 +193,10 @@ SectionEnd
; Copy GCS resources ; Copy GCS resources
Section "-Resources" InSecResources Section "-Resources" InSecResources
SetOutPath "$INSTDIR\share\openpilotgcs\cloudconfig"
File /r "${GCS_BUILD_TREE}\share\openpilotgcs\cloudconfig\*"
SetOutPath "$INSTDIR\share\openpilotgcs\default_configurations" SetOutPath "$INSTDIR\share\openpilotgcs\default_configurations"
File /r "${GCS_BUILD_TREE}\share\openpilotgcs\default_configurations\*" File /r "${GCS_BUILD_TREE}\share\openpilotgcs\default_configurations\*"
SetOutPath "$INSTDIR\share\openpilotgcs\stylesheets"
File /r "${GCS_BUILD_TREE}\share\openpilotgcs\stylesheets\*"
SetOutPath "$INSTDIR\share\openpilotgcs\diagrams" SetOutPath "$INSTDIR\share\openpilotgcs\diagrams"
File /r "${GCS_BUILD_TREE}\share\openpilotgcs\diagrams\*" File /r "${GCS_BUILD_TREE}\share\openpilotgcs\diagrams\*"
SetOutPath "$INSTDIR\share\openpilotgcs\dials" SetOutPath "$INSTDIR\share\openpilotgcs\dials"
@ -207,6 +207,8 @@ Section "-Resources" InSecResources
File /r "${GCS_BUILD_TREE}\share\openpilotgcs\models\*" File /r "${GCS_BUILD_TREE}\share\openpilotgcs\models\*"
SetOutPath "$INSTDIR\share\openpilotgcs\pfd" SetOutPath "$INSTDIR\share\openpilotgcs\pfd"
File /r "${GCS_BUILD_TREE}\share\openpilotgcs\pfd\*" File /r "${GCS_BUILD_TREE}\share\openpilotgcs\pfd\*"
SetOutPath "$INSTDIR\share\openpilotgcs\stylesheets"
File /r "${GCS_BUILD_TREE}\share\openpilotgcs\stylesheets\*"
SectionEnd SectionEnd
; Copy Notify plugin sound files ; Copy Notify plugin sound files