summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2017-11-09 13:29:24 +0100
committerUlf Hermann <ulf.hermann@qt.io>2017-11-09 13:59:49 +0000
commitf382993a8b6d1a9ecd75905114db89c736a1c057 (patch)
treeedb923136aa51a29007858a1cc053c8f074e0f6c
parentafef032a483895eb24348d076a8e1e55d36286eb (diff)
Add the qbs files as OTHER_FILES to qmake projects
Change-Id: I8abc665666fcd01ca33d990a49635d00432b8c4b Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
-rw-r--r--app/app.pro2
-rw-r--r--perfparser.pro2
-rw-r--r--tests/auto/auto.pro2
-rw-r--r--tests/auto/elfmap/elfmap.pro2
-rw-r--r--tests/auto/kallsyms/kallsyms.pro2
-rw-r--r--tests/auto/perfdata/perfdata.pro2
-rw-r--r--tests/tests.pro2
7 files changed, 14 insertions, 0 deletions
diff --git a/app/app.pro b/app/app.pro
index 2811982..384908c 100644
--- a/app/app.pro
+++ b/app/app.pro
@@ -42,3 +42,5 @@ HEADERS += \
perfsymboltable.h \
perfelfmap.h \
perfkallsyms.h
+
+OTHER_FILES += app.qbs
diff --git a/perfparser.pro b/perfparser.pro
index 0d1ad94..c214914 100644
--- a/perfparser.pro
+++ b/perfparser.pro
@@ -46,4 +46,6 @@ defineReplace(elfutilsLibraryName) {
}
}
+OTHER_FILES += perfparser.qbs
+
QMAKE_EXTRA_TARGETS += deploy docs install_docs
diff --git a/tests/auto/auto.pro b/tests/auto/auto.pro
index bd5fb62..dea8bf5 100644
--- a/tests/auto/auto.pro
+++ b/tests/auto/auto.pro
@@ -3,3 +3,5 @@ SUBDIRS = \
elfmap \
kallsyms \
perfdata
+
+OTHER_FILES += auto.qbs
diff --git a/tests/auto/elfmap/elfmap.pro b/tests/auto/elfmap/elfmap.pro
index 6e63409..10c9458 100644
--- a/tests/auto/elfmap/elfmap.pro
+++ b/tests/auto/elfmap/elfmap.pro
@@ -13,3 +13,5 @@ SOURCES += \
HEADERS += \
../../../app/perfelfmap.h
+
+OTHER_FILES += elfmap.qbs
diff --git a/tests/auto/kallsyms/kallsyms.pro b/tests/auto/kallsyms/kallsyms.pro
index 3e27c2a..2b60208 100644
--- a/tests/auto/kallsyms/kallsyms.pro
+++ b/tests/auto/kallsyms/kallsyms.pro
@@ -13,3 +13,5 @@ SOURCES += \
HEADERS += \
../../../app/perfkallsyms.h
+
+OTHER_FILES += kallsyms.qbs
diff --git a/tests/auto/perfdata/perfdata.pro b/tests/auto/perfdata/perfdata.pro
index 689a387..f16f379 100644
--- a/tests/auto/perfdata/perfdata.pro
+++ b/tests/auto/perfdata/perfdata.pro
@@ -36,3 +36,5 @@ HEADERS += \
RESOURCES += \
perfdata.qrc
+
+OTHER_FILES += perfdata.qbs
diff --git a/tests/tests.pro b/tests/tests.pro
index 7fbc8a9..3ed55d8 100644
--- a/tests/tests.pro
+++ b/tests/tests.pro
@@ -1,2 +1,4 @@
TEMPLATE = subdirs
SUBDIRS = auto
+
+OTHER_FILES += tests.qbs