mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-30 08:24:11 +01:00
da18ee67b1
git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@2863 ebee16cc-31ac-478f-84a7-5cbb03baadba
72 lines
3.7 KiB
Prolog
72 lines
3.7 KiB
Prolog
include(../../openpilotgcs.pri)
|
|
|
|
TEMPLATE = subdirs
|
|
|
|
# Some Windows packaging magic (for release build only)
|
|
equals(copydata, 1):win32:CONFIG(release, debug|release) {
|
|
|
|
WINX86_PATH = packaging/winx86
|
|
SVN_INFO_TEMPLATE = svninfo.tpl
|
|
SVN_INFO_MAKEFILE = svninfo.mk
|
|
NSIS_TEMPLATE = openpilotgcs.tpl
|
|
NSIS_HEADER = openpilotgcs.nsh
|
|
|
|
# Check for SubWCRev.exe executable required to get some useful SVN repository info.
|
|
# For example, currently checked out SVN revision (highest for the working copy).
|
|
# SubWCRev is a part of TortoiseSVN client distribution:
|
|
# http://tortoisesvn.net/
|
|
# SubWCRev is also available separately:
|
|
# http://sourceforge.net/projects/tortoisesvn/files/Tools/1.6.7/SubWCRev-1.6.7.18415.msi/download
|
|
|
|
# Default location is TortoiseSVN bin folder.
|
|
# FIXME: it should try to find in the PATH first, and use hardcoded reference last
|
|
SUBWCREV_EXE = $$targetPath(\"$$(ProgramFiles)/TortoiseSVN/bin/SubWCRev.exe\")
|
|
|
|
exists($$SUBWCREV_EXE) {
|
|
message("SubWCRev found: $${SUBWCREV_EXE}")
|
|
svninfo.commands += @echo Copying stubs... $$addNewline()
|
|
svninfo.commands += $(COPY_FILE)
|
|
svninfo.commands += $$targetPath($$GCS_SOURCE_TREE/$$WINX86_PATH/$$SVN_INFO_MAKEFILE)
|
|
svninfo.commands += $$targetPath($$GCS_BUILD_TREE/$$WINX86_PATH/$$SVN_INFO_MAKEFILE)
|
|
svninfo.commands += $$addNewline()
|
|
svninfo.commands += $(COPY_FILE)
|
|
svninfo.commands += $$targetPath($$GCS_SOURCE_TREE/$$WINX86_PATH/$$NSIS_HEADER)
|
|
svninfo.commands += $$targetPath($$GCS_BUILD_TREE/$$WINX86_PATH/$$NSIS_HEADER)
|
|
svninfo.commands += $$addNewline()
|
|
svninfo.commands += @echo Executing $${SUBWCREV_EXE} $$SVN_INFO_TEMPLATE $$SVN_INFO_MAKEFILE $$addNewline()
|
|
svninfo.commands += -@$$SUBWCREV_EXE $$targetPath($$GCS_SOURCE_TREE)
|
|
svninfo.commands += $$targetPath($$GCS_SOURCE_TREE/$$WINX86_PATH/$$SVN_INFO_TEMPLATE)
|
|
svninfo.commands += $$targetPath($$GCS_BUILD_TREE/$$WINX86_PATH/$$SVN_INFO_MAKEFILE)
|
|
svninfo.commands += $$addNewline()
|
|
svninfo.commands += @echo Executing $${SUBWCREV_EXE} $$NSIS_TEMPLATE $$NSIS_HEADER $$addNewline()
|
|
svninfo.commands += -@$$SUBWCREV_EXE $$targetPath($$GCS_SOURCE_TREE)
|
|
svninfo.commands += $$targetPath($$GCS_SOURCE_TREE/$$WINX86_PATH/$$NSIS_TEMPLATE)
|
|
svninfo.commands += $$targetPath($$GCS_BUILD_TREE/$$WINX86_PATH/$$NSIS_HEADER)
|
|
svninfo.commands += $$addNewline()
|
|
} else {
|
|
message("SubWCRev not found, SVN info is not available")
|
|
svninfo.commands += $(COPY_FILE)
|
|
svninfo.commands += $$targetPath($$GCS_SOURCE_TREE/$$WINX86_PATH/$$SVN_INFO_MAKEFILE)
|
|
svninfo.commands += $$targetPath($$GCS_BUILD_TREE/$$WINX86_PATH/$$SVN_INFO_MAKEFILE)
|
|
svninfo.commands += $$addNewline()
|
|
svninfo.commands += $(COPY_FILE)
|
|
svninfo.commands += $$targetPath($$GCS_SOURCE_TREE/$$WINX86_PATH/$$NSIS_HEADER)
|
|
svninfo.commands += $$targetPath($$GCS_BUILD_TREE/$$WINX86_PATH/$$NSIS_HEADER)
|
|
svninfo.commands += $$addNewline()
|
|
}
|
|
svninfo.target = svninfo.dummy
|
|
QMAKE_EXTRA_TARGETS += svninfo
|
|
force.depends += svninfo
|
|
|
|
# Redefine FORCE target to collect data every time
|
|
force.target = FORCE
|
|
QMAKE_EXTRA_TARGETS += force
|
|
|
|
# Create installer build target - this WILL NOT run during build, run it by hand
|
|
message("Run \"make installer\" in $$GCS_BUILD_TREE/$$WINX86_PATH to build Windows installer (Unicode NSIS 2.46+ required)")
|
|
nsis.target = installer
|
|
nsis.depends = svninfo
|
|
nsis.commands += @$$targetPath($$GCS_SOURCE_TREE/$$WINX86_PATH/Makefile.cmd)
|
|
QMAKE_EXTRA_TARGETS += nsis
|
|
}
|