diff options
author | Scott Murray <scott.murray@konsulko.com> | 2020-06-09 22:05:39 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2020-06-09 22:07:28 -0400 |
commit | 90585b01528590b5d27cdef79450e597653fa239 (patch) | |
tree | 8b7a330fcf4207bcb8022fbc992dd012d48e7b09 /package/package.pro | |
parent | 57881a95bf730dec7dd010bc086a5c42003840d4 (diff) |
Update autobuild scriptsneedlefish_13.93.0needlefish/13.93.0marlin_12.93.0marlin_12.92.0marlin_12.91.0marlin_12.90.1marlin_12.90.0marlin/12.93.0marlin/12.92.0marlin/12.91.0marlin/12.90.1marlin/12.90.0lamprey_11.92.0lamprey_11.91.0lamprey/11.92.0lamprey/11.91.0koi_10.93.0koi_10.92.0koi_10.91.0koi/10.93.0koi/10.92.0koi/10.91.0jellyfish_9.99.4jellyfish_9.99.3jellyfish_9.99.2jellyfish_9.99.1jellyfish/9.99.4jellyfish/9.99.3jellyfish/9.99.2jellyfish/9.99.19.99.49.99.39.99.29.99.113.93.012.93.012.92.012.91.012.90.112.90.011.92.011.91.010.93.010.92.010.91.0
Update autobuild scripts with reworked version that fixes building
outside of the source tree. As well, the project files have been
tweaked to strip the release build binaries and add "-debug" in the
name of the debug widget file.
Bug-AGL: SPEC-2049, SPEC-3300
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: I1e5e36fba6205f046b007be7ae729abadfbd594c
Diffstat (limited to 'package/package.pro')
-rw-r--r-- | package/package.pro | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/package/package.pro b/package/package.pro index 68aa56a..a9d148f 100644 --- a/package/package.pro +++ b/package/package.pro @@ -13,7 +13,12 @@ copy_config.commands = $(COPY_FILE) \"$$replace(copy_config.depends, /, $$QMAKE_ QMAKE_EXTRA_TARGETS += copy_config PRE_TARGETDEPS += $$copy_config.target +WGT_TYPE = +CONFIG(debug, debug|release) { + WGT_TYPE = -debug +} + wgt.target = package -wgt.commands = wgtpkg-pack -f -o navigation.wgt root +wgt.commands = wgtpkg-pack -f -o navigation$${WGT_TYPE}.wgt root QMAKE_EXTRA_TARGETS += wgt |