diff options
author | Christian Kandeler <christian.kandeler@digia.com> | 2013-06-21 13:12:30 +0200 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@digia.com> | 2013-06-25 17:05:42 +0200 |
commit | 54ed620f35f19600195e9057cfcf5bc01573f396 (patch) | |
tree | 443d85e9e02806c82e8c6db8a727babe67301943 /qbs | |
parent | 195d3c6f9e1524171bacc0b3e3d415ce8c88c766 (diff) | |
download | qt-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 'qbs')
-rw-r--r-- | qbs/pluginspec/pluginspec.qbs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qbs/pluginspec/pluginspec.qbs b/qbs/pluginspec/pluginspec.qbs index e3d256376d..d2035389e1 100644 --- a/qbs/pluginspec/pluginspec.qbs +++ b/qbs/pluginspec/pluginspec.qbs @@ -87,7 +87,7 @@ Module { } prepare: { - var xslFile = project.path + "/src/pluginjsonmetadata.xsl"; + var xslFile = project.path + "/../pluginjsonmetadata.xsl"; // project is "Plugins" var xmlPatternsPath = product.moduleProperty("Qt/core", "binPath") + "/xmlpatterns"; var args = [ "-no-format", |