summaryrefslogtreecommitdiff
path: root/src/plugins/cmakeprojectmanager/cmakebuildconfiguration.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-11-01 14:14:17 +0100
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-11-01 14:25:24 +0100
commit6510a749b7efbdb9e65335961111d2106a0e22c9 (patch)
treea76da8c20a29c512462b2b32f8af5d42c659b9da /src/plugins/cmakeprojectmanager/cmakebuildconfiguration.h
parent34e2e491f426453a95cf09ad09a8f73b9ac56f89 (diff)
downloadqt-creator-6510a749b7efbdb9e65335961111d2106a0e22c9.tar.gz
ProjectExplorer: Move ToolChainType enumeration into separate Header.
Acked-By: dt
Diffstat (limited to 'src/plugins/cmakeprojectmanager/cmakebuildconfiguration.h')
-rw-r--r--src/plugins/cmakeprojectmanager/cmakebuildconfiguration.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmakebuildconfiguration.h b/src/plugins/cmakeprojectmanager/cmakebuildconfiguration.h
index ba13d14c66..4eba561390 100644
--- a/src/plugins/cmakeprojectmanager/cmakebuildconfiguration.h
+++ b/src/plugins/cmakeprojectmanager/cmakebuildconfiguration.h
@@ -31,7 +31,11 @@
#define CMAKEBUILDCONFIGURATION_H
#include <projectexplorer/buildconfiguration.h>
-#include <projectexplorer/toolchain.h>
+#include <projectexplorer/toolchaintype.h>
+
+namespace ProjectExplorer {
+class ToolChain;
+}
namespace CMakeProjectManager {
namespace Internal {
@@ -52,7 +56,7 @@ public:
virtual QString buildDirectory() const;
- ProjectExplorer::ToolChain::ToolChainType toolChainType() const;
+ ProjectExplorer::ToolChainType toolChainType() const;
ProjectExplorer::ToolChain *toolChain() const;
void setBuildDirectory(const QString &buildDirectory);