diff options
author | Orgad Shaneh <orgad.shaneh@audiocodes.com> | 2012-09-27 17:20:00 +0200 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@digia.com> | 2012-10-05 10:18:56 +0200 |
commit | 614bb33589aa1fade05cd1b6b32b3acc848f2fd8 (patch) | |
tree | 0daa7e6382bbf5aeb47aeeeec47d7d86ab300a30 /src/libs/glsl/glsl.qbs | |
parent | 009c3f1a261abe14a1c193607292cccf8970e069 (diff) | |
download | qt-creator-614bb33589aa1fade05cd1b6b32b3acc848f2fd8.tar.gz |
qbs files: Consolidate includePaths in QtcLibrary and QtcPlugin
Avoid using "." as includePath when it is unneeded
Change-Id: I9bc6f4ebe50409f49782520033fd5f098aed10d0
Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Diffstat (limited to 'src/libs/glsl/glsl.qbs')
-rw-r--r-- | src/libs/glsl/glsl.qbs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/libs/glsl/glsl.qbs b/src/libs/glsl/glsl.qbs index edffdb4da5..0a49bc50db 100644 --- a/src/libs/glsl/glsl.qbs +++ b/src/libs/glsl/glsl.qbs @@ -4,10 +4,6 @@ import "../QtcLibrary.qbs" as QtcLibrary QtcLibrary { name: "GLSL" - cpp.includePaths: [ - ".", - ".." - ] cpp.defines: base.concat([ "QT_CREATOR", "GLSL_BUILD_LIB" @@ -47,10 +43,5 @@ QtcLibrary { "glsltypes.cpp", "glsltypes.h", ] - - ProductModule { - Depends { name: "cpp" } - cpp.includePaths: ["."] - } } |