summaryrefslogtreecommitdiff
path: root/src/plugins/cpptools/clangcompileroptionsbuilder.h
diff options
context:
space:
mode:
authorIvan Donchevskii <ivan.donchevskii@qt.io>2017-09-27 10:32:52 +0200
committerIvan Donchevskii <ivan.donchevskii@qt.io>2017-10-23 12:46:34 +0000
commitb10f8484c7bb62b297fbbdafdbf9ef0e7074a01a (patch)
tree5d7af481cacb6f618d121185474e00cfc36f1958 /src/plugins/cpptools/clangcompileroptionsbuilder.h
parentf19facd37842de97f2330e3a34c2bdfc3552dea9 (diff)
downloadqt-creator-b10f8484c7bb62b297fbbdafdbf9ef0e7074a01a.tar.gz
CppTools: merge CompilerOptionsBuilder with Clang one
Since it's never used for other compilers. Change-Id: I9512692d1dc9f9a701ea2453b7d50005478bed5d Reviewed-by: Nikolai Kosjar <nikolai.kosjar@qt.io>
Diffstat (limited to 'src/plugins/cpptools/clangcompileroptionsbuilder.h')
-rw-r--r--src/plugins/cpptools/clangcompileroptionsbuilder.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/src/plugins/cpptools/clangcompileroptionsbuilder.h b/src/plugins/cpptools/clangcompileroptionsbuilder.h
deleted file mode 100644
index fbe2a5baad..0000000000
--- a/src/plugins/cpptools/clangcompileroptionsbuilder.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt Creator.
-**
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3 as published by the Free Software
-** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-3.0.html.
-**
-****************************************************************************/
-
-#pragma once
-
-#include "cpptools_global.h"
-
-#include <cpptools/compileroptionsbuilder.h>
-
-namespace CppTools {
-
-class CPPTOOLS_EXPORT ClangCompilerOptionsBuilder : public CompilerOptionsBuilder
-{
-public:
- QStringList build(ProjectFile::Kind fileKind,
- PchUsage pchUsage);
-
- ClangCompilerOptionsBuilder(const ProjectPart &projectPart,
- const QString &clangVersion = QString(),
- const QString &clangResourceDirectory = QString());
-
- virtual void addPredefinedHeaderPathsOptions();
- virtual void addExtraOptions();
-
- bool excludeHeaderPath(const QString &path) const override;
-
- virtual void addWrappedQtHeadersIncludePath();
- void addProjectConfigFileInclude();
-
- void undefineClangVersionMacrosForMsvc();
-private:
- QString clangIncludeDirectory() const;
- QString m_clangVersion;
- QString m_clangResourceDirectory;
-};
-
-} // namespace CppTools