diff options
author | Scott Murray <scott.murray@konsulko.com> | 2020-06-09 22:05:58 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2020-06-10 22:34:53 +0000 |
commit | f8ef14823e661ff00285ffddd86397c49c081162 (patch) | |
tree | 7df2b777f217fb91d0d40f040514ea7128e5446c /app/app.pro | |
parent | 6ed2a090aa630cfc950719f9f82a47c0ed41e8c4 (diff) |
Update autobuild scripts
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: Ie5eb8365d77f5de507dd393f41d95ac88f417661
Diffstat (limited to 'app/app.pro')
-rw-r--r-- | app/app.pro | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/app.pro b/app/app.pro index 9cf0a54..8809bc0 100644 --- a/app/app.pro +++ b/app/app.pro @@ -6,6 +6,10 @@ SOURCES = main.cpp CONFIG += link_pkgconfig PKGCONFIG += libhomescreen qlibwindowmanager qtappfw-network qtappfw-bt qtappfw-voice qtqrcode-quickitem +CONFIG(release, debug|release) { + QMAKE_POST_LINK = $(STRIP) --strip-unneeded $(TARGET) +} + RESOURCES += \ settings.qrc \ images/images.qrc \ |