diff options
author | Christian Kandeler <christian.kandeler@theqtcompany.com> | 2015-02-18 15:35:45 +0100 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@theqtcompany.com> | 2015-02-18 14:49:06 +0000 |
commit | 05f8a2c81383b028cc06262d1863618e1173bbc3 (patch) | |
tree | 3dc91853852250ac359f5f966a3f8debb1837854 /src/app/app.qbs | |
parent | 64be0004a6e90acbb31466cce4ca094c5ba5713d (diff) | |
download | qt-creator-05f8a2c81383b028cc06262d1863618e1173bbc3.tar.gz |
qbs build: Introduce convenience project property sharedSourcesDir.
Change-Id: I69aacc7391e6e25e66eae1fb54b3c1cfb18679ee
Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
Diffstat (limited to 'src/app/app.qbs')
-rw-r--r-- | src/app/app.qbs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/app.qbs b/src/app/app.qbs index d02e79aac8..c47fde658c 100644 --- a/src/app/app.qbs +++ b/src/app/app.qbs @@ -8,8 +8,8 @@ QtcProduct { cpp.rpaths: qbs.targetOS.contains("osx") ? ["@executable_path/.."] : ["$ORIGIN/../" + project.libDirName + "/qtcreator"] cpp.includePaths: [ - "../shared/qtsingleapplication", - "../shared/qtlockedfile", + project.sharedSourcesDir + "/qtsingleapplication", + project.sharedSourcesDir + "/qtlockedfile", ] Depends { name: "app_version_header" } |