aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cpptools/compileroptionsbuilder.h
diff options
context:
space:
mode:
authorIvan Donchevskii <ivan.donchevskii@qt.io>2018-08-06 11:32:32 +0200
committerIvan Donchevskii <ivan.donchevskii@qt.io>2018-08-06 12:38:52 +0000
commit344cbb3a1b0fe5dd04dca8181d51148c0e9f3d75 (patch)
treea750e2178edf13d27014dd6779abf26ea513e366 /src/plugins/cpptools/compileroptionsbuilder.h
parent960fccc7638880f1fa6dccc978c390828be9fa91 (diff)
Clang: Move clang paths helper functions to Core plugin
These functions require core plugin so they can't go to utils library. At the same time to use them in ProjectExplorer plugin there are not too many choices where to put them without introducing new dependencies. Change-Id: I3cccccffaae8ac4bbce924fd809b5423da5dc503 Reviewed-by: Marco Bubke <marco.bubke@qt.io>
Diffstat (limited to 'src/plugins/cpptools/compileroptionsbuilder.h')
-rw-r--r--src/plugins/cpptools/compileroptionsbuilder.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/plugins/cpptools/compileroptionsbuilder.h b/src/plugins/cpptools/compileroptionsbuilder.h
index 87dc46ff26..35cd2ce57a 100644
--- a/src/plugins/cpptools/compileroptionsbuilder.h
+++ b/src/plugins/cpptools/compileroptionsbuilder.h
@@ -97,15 +97,4 @@ private:
QString m_clangResourceDirectory;
};
-QString CPPTOOLS_EXPORT clangExecutable(const QString &clangBinDirectory);
-
-QString CPPTOOLS_EXPORT clangIncludeDirectory(const QString &clangVersion,
- const QString &clangResourceDirectory);
-
-template<class T>
-T clangIncludePath(const T &clangVersion)
-{
- return "/lib/clang/" + clangVersion + "/include";
-}
-
} // namespace CppTools