summaryrefslogtreecommitdiff
path: root/src/src.qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2013-06-21 13:12:30 +0200
committerChristian Kandeler <christian.kandeler@digia.com>2013-06-25 17:05:42 +0200
commit54ed620f35f19600195e9057cfcf5bc01573f396 (patch)
tree443d85e9e02806c82e8c6db8a727babe67301943 /src/src.qbs
parent195d3c6f9e1524171bacc0b3e3d415ce8c88c766 (diff)
downloadqt-creator-54ed620f35f19600195e9057cfcf5bc01573f396.tar.gz
Refactor qbs project files.
- Use sub-projects. - Move the main application and the application header products into dedicated files. As a result, qtcreator.qbs becomes much simpler to understand, consisting now of just a bunch of global properties and a few sub-project references. Change-Id: Ic7300d489d3982394be5ad1d12a79a2914320298 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'src/src.qbs')
-rw-r--r--src/src.qbs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/src.qbs b/src/src.qbs
new file mode 100644
index 0000000000..2f74200f77
--- /dev/null
+++ b/src/src.qbs
@@ -0,0 +1,12 @@
+import qbs
+
+Project {
+ name: "Sources"
+ references: [
+ "app/app.qbs",
+ "app/app_version_header.qbs",
+ "libs/libs.qbs",
+ "plugins/plugins.qbs",
+ "tools/tools.qbs"
+ ]
+}