Logic: VS Solution Parsing update

Updated vs solution parsing, fixed some issues. Also fixed some issues with corresponding unit tests.
This commit is contained in:
Manuel Dobusch
2016-02-15 17:55:01 +01:00
parent 1113544b6b
commit d31557cb66
10 changed files with 636 additions and 18 deletions
@@ -92,7 +92,7 @@ void IDECommunicationController::handleCreateProjectMessage(const NetworkProtoco
std::vector<std::string> includePaths = parser.getIncludePaths();
std::vector<std::string> projectItems = parser.getProjectItems();
std::vector<FilePath> projectFPs;
/*std::vector<FilePath> projectFPs;
std::vector<FilePath> includeFPs;
for (unsigned int i = 0; i < projectItems.size(); i++)
@@ -103,7 +103,7 @@ void IDECommunicationController::handleCreateProjectMessage(const NetworkProtoco
for (unsigned int i = 0; i < includePaths.size(); i++)
{
includeFPs.push_back(FilePath(includePaths[i]));
}
}*/
/*ProjectSettings* projSettings = ProjectSettings::getInstance().get();
projSettings->clear();