define have_target CONFIG flag
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>
Tue, 10 Apr 2012 12:18:20 +0000 (14:18 +0200)
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>
Tue, 19 Jun 2012 14:40:02 +0000 (16:40 +0200)
the check whether we are building a lib or an app (and thus have a target)
is done by quite some feature files (and generally wrongly, as they do not
account for the new aux target), so centralize it in default_post.prf.

Change-Id: I868edbc4185be8a6c23ecd4a2c126024d73cdeb4
Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
mkspecs/features/default_post.prf
mkspecs/features/static_and_shared.prf
mkspecs/features/testcase.prf
mkspecs/features/unix/gdb_dwarf_index.prf
mkspecs/features/unix/separate_debug_info.prf

index 0593e45..8858e63 100644 (file)
@@ -1,6 +1,8 @@
+contains(TEMPLATE, ".*(lib|app)"):CONFIG += have_target
+
 QT_BREAKPAD_ROOT_PATH = $$(QT_BREAKPAD_ROOT_PATH)
 !isEmpty(QT_BREAKPAD_ROOT_PATH): \   # quick test first whether requested ...
-        !staticlib:!static:CONFIG(release, debug|release):contains(TEMPLATE, .*(app|lib)): \   # is it applicable?
+        !staticlib:!static:CONFIG(release, debug|release):have_target: \   # is it applicable?
         !contains(TARGET, .*phony_target.*): \   # monster hack, you don't really see this here, right? ;)
         system($$QT_BREAKPAD_ROOT_PATH/qtbreakpadsymbols --breakpad-exists) {    # do we really have it?
     CONFIG += breakpad
index f586bdd..47c68e5 100644 (file)
@@ -1,3 +1,3 @@
-!contains(TEMPLATE, subdirs):!macx-xcode {
+have_target:!macx-xcode {
     addExclusiveBuilds(static, Static, shared, Shared)
 }
index ea7b520..62b201f 100644 (file)
@@ -1,4 +1,4 @@
-!contains(TEMPLATE,subdirs) {
+have_target {
 
 check.files                =
 check.path                 = .
@@ -128,7 +128,7 @@ contains(INSTALLS, target) {
     }
 }
 
-}
+} # have_target
 
 defineTest(installTestHelperApp) {
     # args: relativeSource, relativeDestination, targetName
index e3f79cd..9a7a8e0 100644 (file)
@@ -1,4 +1,4 @@
-!CONFIG(separate_debug_info):CONFIG(debug, debug|release):!staticlib:!static:!contains(TEMPLATE, subdirs):!isEmpty(QMAKE_OBJCOPY) {
+!CONFIG(separate_debug_info):CONFIG(debug, debug|release):have_target:!staticlib:!static:!isEmpty(QMAKE_OBJCOPY) {
 
     contains(TEMPLATE, "lib") {
         QMAKE_GDB_INDEX = { test -z \"$(DESTDIR)\" || cd \"$(DESTDIR)\"; } &&
index 8843c6d..2e36dd2 100644 (file)
@@ -1,5 +1,5 @@
 
-!separate_debug_info_nocopy:!staticlib:!static:!contains(TEMPLATE, subdirs):!isEmpty(QMAKE_OBJCOPY) {
+!separate_debug_info_nocopy:have_target:!staticlib:!static:!isEmpty(QMAKE_OBJCOPY) {
     QMAKE_SEPARATE_DEBUG_INFO = test -z \"$(DESTDIR)\" || cd \"$(DESTDIR)\" ; targ=`basename $(TARGET)`; $$QMAKE_OBJCOPY --only-keep-debug \"\$\$targ\" \"\$\$targ.debug\" && $$QMAKE_OBJCOPY --strip-debug \"\$\$targ\" && $$QMAKE_OBJCOPY --add-gnu-debuglink=\"\$\$targ.debug\" \"\$\$targ\" && chmod -x \"\$\$targ.debug\"
     QMAKE_INSTALL_SEPARATE_DEBUG_INFO = test -z \"$(DESTDIR)\" || cd \"$(DESTDIR)\" ; $(INSTALL_FILE) `basename $(TARGET)`.debug $(INSTALL_ROOT)/\$\$target_path/