diff options
author | Eike Ziller <[email protected]> | 2019-08-28 18:22:45 +0200 |
---|---|---|
committer | Eike Ziller <[email protected]> | 2019-09-11 06:22:12 +0000 |
commit | 9cc45fe1fb6a953c9cbe1fe96683de5dd305d457 (patch) | |
tree | 9fbfe86b84d2038a6c03c258f2af5239d772687b /src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp | |
parent | f52c4f450dcce22dc68b9e8d9adede94cad12e59 (diff) |
CppTools: Move RawProjectPart to ProjectExplorer
Doesn't have any dependencies into CppTools anymore, therefore moving it
reduces the dependencies of the project managers to CppTools as well.
Change-Id: Ibe728abe59eb88a8877943dca1f48a85163e27ac
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp')
-rw-r--r-- | src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp b/src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp index 200f8018541..2cc69e4c9ad 100644 --- a/src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp +++ b/src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp @@ -271,12 +271,12 @@ void CMakeBuildSystem::updateProjectData(CMakeProject *p, CMakeBuildConfiguratio { QString errorMessage; - CppTools::RawProjectParts rpps = bc->m_buildDirManager.createRawProjectParts(errorMessage); + RawProjectParts rpps = bc->m_buildDirManager.createRawProjectParts(errorMessage); if (!errorMessage.isEmpty()) bc->setError(errorMessage); qCDebug(cmakeBuildSystemLog) << "Raw project parts created." << errorMessage; - for (CppTools::RawProjectPart &rpp : rpps) { + for (RawProjectPart &rpp : rpps) { rpp.setQtVersion( kitInfo.projectPartQtVersion); // TODO: Check if project actually uses Qt. if (kitInfo.cxxToolChain) |