diff options
author | Daniel Molkentin <daniel.molkentin@nokia.com> | 2012-01-17 19:35:41 +0100 |
---|---|---|
committer | Daniel Molkentin <daniel.molkentin@nokia.com> | 2012-01-30 14:06:53 +0100 |
commit | c03b9b0c86cfac94a0ac6d4289092f1a2a100b0b (patch) | |
tree | 7bd3832bf74ad571ab623c28cf8d123251b9d1a9 /qtcreator.pro | |
parent | 142cee902bf7f0e6ed130eb62069902c8cb9b961 (diff) | |
download | qt-creator-c03b9b0c86cfac94a0ac6d4289092f1a2a100b0b.tar.gz |
Add deployartifacts command
Deploys prebuilt artifacts from remote repository.
Currently only used on Windows, includes
the 64 bit debugging helper and a stable version
of jom, taken from an external repository.
Change-Id: I9f034f184f94bf4e0b088338cde6d8e0d6c7d419
Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
Reviewed-by: Daniel Molkentin <daniel.molkentin@nokia.com>
Diffstat (limited to 'qtcreator.pro')
-rw-r--r-- | qtcreator.pro | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/qtcreator.pro b/qtcreator.pro index eaba81fb62..f79577eb60 100644 --- a/qtcreator.pro +++ b/qtcreator.pro @@ -26,13 +26,18 @@ macx { QMAKE_EXTRA_TARGETS += dmg } else { deployqt.commands = $$PWD/scripts/deployqt.py -i $(INSTALL_ROOT) - win32:deployqt.commands ~= s,/,\\\\,g deployqt.depends = install - bindist.commands = $$PWD/scripts/bindistHelper.py $(INSTALL_ROOT) $${PLATFORM}$(INSTALL_EDITION)-$${QTCREATOR_VERSION}$(INSTALL_POSTFIX) - win32:PLATFORM="windows" + bindist.commands = $$PWD/scripts/bindist_helper.py $(INSTALL_ROOT) $${PLATFORM}$(INSTALL_EDITION)-$${QTCREATOR_VERSION}$(INSTALL_POSTFIX) + win32 { + bindist.commands ~= s,/,\\\\,g + deployqt.commands ~= s,/,\\\\,g + deployartifacts.depends = install + PLATFORM="windows" + deployartifacts.commands = git clone "git://gitorious.org/qt-creator/binary-artifacts.git"&& xcopy /s /q /y /i "binary-artifacts\\win32" $(INSTALL_ROOT)&& rmdir /s binary-artifacts + QMAKE_EXTRA_TARGETS += deployartifacts + } else:linux-*:PLATFORM="linux-$${QT_ARCH}" else:PLATFORM="unknown" - win32:bindist.commands ~= s,/,\\\\,g } bindist.depends = deployqt QMAKE_EXTRA_TARGETS += deployqt bindist |