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/plugins/cpaster | |
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/plugins/cpaster')
-rw-r--r-- | src/plugins/cpaster/cpaster.qbs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpaster/cpaster.qbs b/src/plugins/cpaster/cpaster.qbs index 033b570b8e..4b3cb99a84 100644 --- a/src/plugins/cpaster/cpaster.qbs +++ b/src/plugins/cpaster/cpaster.qbs @@ -9,7 +9,7 @@ QtcPlugin { Depends { name: "Core" } Depends { name: "TextEditor" } - cpp.includePaths: base.concat("../../shared/cpaster") + cpp.includePaths: base.concat([project.sharedSourcesDir + "/cpaster"]) files: [ "columnindicatortextedit.cpp", |