diff options
author | Christian Kandeler <christian.kandeler@digia.com> | 2013-08-29 16:36:42 +0200 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@digia.com> | 2013-09-02 17:28:17 +0200 |
commit | 72d173829caffb82b76e5ce03dbf6e6abda32cb0 (patch) | |
tree | 31f880f4ac1fb33e5347851d44e7f999225295eb /src/plugins/updateinfo | |
parent | 7c4d0d3bf32e3861254394864aa686ee89d91aea (diff) | |
download | qt-creator-72d173829caffb82b76e5ce03dbf6e6abda32cb0.tar.gz |
Remove superfluous include paths from project files.
A lot of our build system files specify unneeded include
paths. These roughly fall into the following categories:
a) Paths that are already set in more general files
such as qtcreator.pri.
b) Paths that serve no purpose at all, possibly
left over from earlier versions of the project.
c) Paths that act as workarounds for wrong include
statements of the form '#include "xyz.h"', where
xyz.h is not in the same directory as the including
file.
This patch removes such path specifications and fixes the offending
include statements from case c).
Tested on Linux, Windows and OSX with qmake and qbs.
Change-Id: I039a8449f8a65df0d616b4c08081145c18ae4b15
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'src/plugins/updateinfo')
-rw-r--r-- | src/plugins/updateinfo/updateinfo.qbs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/plugins/updateinfo/updateinfo.qbs b/src/plugins/updateinfo/updateinfo.qbs index 0063247ce5..a2e15ec828 100644 --- a/src/plugins/updateinfo/updateinfo.qbs +++ b/src/plugins/updateinfo/updateinfo.qbs @@ -11,11 +11,6 @@ QtcPlugin { property bool enable: false pluginspecreplacements: ({"UPDATEINFO_EXPERIMENTAL_STR": (enable ? "false": "true")}) - cpp.includePaths: [ - "..", - buildDirectory, - ] - files: [ "updateinfobutton.cpp", "updateinfobutton.h", |