OSDN Git Service

9c30c3e73aa73e66d85a1245b18ccd5035d4e1c7
[qt-creator-jp/qt-creator-jp.git] / src / plugins / cmakeprojectmanager / cmakebuildconfiguration.h
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #ifndef CMAKEBUILDCONFIGURATION_H
35 #define CMAKEBUILDCONFIGURATION_H
36
37 #include <projectexplorer/buildconfiguration.h>
38 #include <projectexplorer/abi.h>
39
40 namespace ProjectExplorer {
41 class ToolChain;
42 }
43
44 namespace CMakeProjectManager {
45 namespace Internal {
46
47 class CMakeTarget;
48 class CMakeBuildConfigurationFactory;
49
50 class CMakeBuildConfiguration : public ProjectExplorer::BuildConfiguration
51 {
52     Q_OBJECT
53     friend class CMakeBuildConfigurationFactory;
54
55 public:
56     CMakeBuildConfiguration(CMakeTarget *parent);
57     ~CMakeBuildConfiguration();
58
59     CMakeTarget *cmakeTarget() const;
60
61     virtual QString buildDirectory() const;
62
63     void setBuildDirectory(const QString &buildDirectory);
64
65     QVariantMap toMap() const;
66
67     ProjectExplorer::IOutputParser *createOutputParser() const;
68
69     Utils::Environment baseEnvironment() const;
70
71     BuildType buildType() const;
72
73 protected:
74     CMakeBuildConfiguration(CMakeTarget *parent, CMakeBuildConfiguration *source);
75     virtual bool fromMap(const QVariantMap &map);
76
77 private:
78     QString m_buildDirectory;
79     QString m_msvcVersion;
80 };
81
82 class CMakeBuildConfigurationFactory : public ProjectExplorer::IBuildConfigurationFactory
83 {
84     Q_OBJECT
85
86 public:
87     CMakeBuildConfigurationFactory(QObject *parent = 0);
88     ~CMakeBuildConfigurationFactory();
89
90     QStringList availableCreationIds(ProjectExplorer::Target *parent) const;
91     QString displayNameForId(const QString &id) const;
92
93     bool canCreate(ProjectExplorer::Target *parent, const QString &id) const;
94     CMakeBuildConfiguration *create(ProjectExplorer::Target *parent, const QString &id);
95     bool canClone(ProjectExplorer::Target *parent, ProjectExplorer::BuildConfiguration *source) const;
96     CMakeBuildConfiguration *clone(ProjectExplorer::Target *parent, ProjectExplorer::BuildConfiguration *source);
97     bool canRestore(ProjectExplorer::Target *parent, const QVariantMap &map) const;
98     CMakeBuildConfiguration *restore(ProjectExplorer::Target *parent, const QVariantMap &map);
99 };
100
101 } // namespace Internal
102 } // namespace CMakeProjectManager
103
104 #endif // CMAKEBUILDCONFIGURATION_H