mirror of
https://github.com/QuasarApp/installer-framework.git
synced 2025-04-28 14:34:36 +00:00
It is a very useful tool to get repositories locally for testing. Change-Id: Ia83841c3e5c96ab369c35580dd98141cf22ed643 Reviewed-by: Karsten Heimrich <karsten.heimrich@digia.com>
31 lines
625 B
Prolog
31 lines
625 B
Prolog
CONFIG += ordered
|
|
TEMPLATE = subdirs
|
|
|
|
SUBDIRS += \
|
|
archivegen \
|
|
binarycreator \
|
|
repogen
|
|
|
|
EXTRASUBDIRS = \
|
|
extractbinarydata \
|
|
repocompare \
|
|
getrepositorycontent
|
|
|
|
|
|
include(../installerfw.pri)
|
|
|
|
!isEqual(IFW_SOURCE_TREE, $$IFW_BUILD_TREE) {
|
|
for(SUBDIR, EXTRASUBDIRS) {
|
|
mkdir.commands += $$QMAKE_MKDIR $$SUBDIR $${IFW_NEWLINE}
|
|
}
|
|
QMAKE_EXTRA_TARGETS += mkdir
|
|
}
|
|
|
|
for(SUBDIR, EXTRASUBDIRS) {
|
|
tools.commands += cd $$SUBDIR && $(QMAKE) -r $$PWD/$$SUBDIR && $(MAKE) $${IFW_NEWLINE}
|
|
}
|
|
!isEqual(IFW_SOURCE_TREE, $$IFW_BUILD_TREE) {
|
|
tools.depends = mkdir
|
|
}
|
|
QMAKE_EXTRA_TARGETS += tools
|