aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/qbs/qbs.qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@theqtcompany.com>2016-05-19 17:07:49 +0200
committerChristian Kandeler <christian.kandeler@theqtcompany.com>2016-06-07 12:31:21 +0000
commitddc360f424720799c26ce47d49f13929e00af2df (patch)
tree3713414489cb0871b84fc2dcc98036db5a35d408 /src/app/qbs/qbs.qbs
parent81e2141158af5ad4f457a2671dd2717d8302e90e (diff)
qbs build: Move build config properties into a dedicated module.
Qt Creator will do the same in order to be able to build plugins that are not part of the main source tree. This means the qbs build and install settings can no longer be controlled by properties in a higher- level project file, but need to come from a module. Change-Id: I20c0a4538395c8ee838b33f35be84ee59f601f90 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'src/app/qbs/qbs.qbs')
-rw-r--r--src/app/qbs/qbs.qbs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/app/qbs/qbs.qbs b/src/app/qbs/qbs.qbs
index e56e97960..0f88f1ddc 100644
--- a/src/app/qbs/qbs.qbs
+++ b/src/app/qbs/qbs.qbs
@@ -7,9 +7,9 @@ QbsApp {
targetName: "qbs"
cpp.defines: base.concat([
'QBS_VERSION="' + QbsFunctions.qbsVersion() + '"',
- 'QBS_RELATIVE_LIBEXEC_PATH="' + project.relativeLibexecPath + '"',
- 'QBS_RELATIVE_SEARCH_PATH="' + project.relativeSearchPath + '"',
- 'QBS_RELATIVE_PLUGINS_PATH="' + project.relativePluginsPath + '"'
+ 'QBS_RELATIVE_LIBEXEC_PATH="' + qbsbuildconfig.relativeLibexecPath + '"',
+ 'QBS_RELATIVE_SEARCH_PATH="' + qbsbuildconfig.relativeSearchPath + '"',
+ 'QBS_RELATIVE_PLUGINS_PATH="' + qbsbuildconfig.relativePluginsPath + '"',
])
files: [
"application.cpp",