Skip to content
Snippets Groups Projects
Commit 752a6413 authored by Roberto Raggi's avatar Roberto Raggi
Browse files

Don't convert the include paths

parent f167218d
No related branches found
No related tags found
No related merge requests found
...@@ -193,7 +193,7 @@ QStringList GenericProject::includePaths() const ...@@ -193,7 +193,7 @@ QStringList GenericProject::includePaths() const
{ return _includePaths; } { return _includePaths; }
void GenericProject::setIncludePaths(const QStringList &includePaths) void GenericProject::setIncludePaths(const QStringList &includePaths)
{ _includePaths = convertToAbsoluteFiles(includePaths); } { _includePaths = includePaths; }
QStringList GenericProject::defines() const QStringList GenericProject::defines() const
{ return _defines; } { return _defines; }
...@@ -369,6 +369,8 @@ MakeStep *GenericProject::makeStep() const ...@@ -369,6 +369,8 @@ MakeStep *GenericProject::makeStep() const
void GenericProject::restoreSettingsImpl(ProjectExplorer::PersistentSettingsReader &reader) void GenericProject::restoreSettingsImpl(ProjectExplorer::PersistentSettingsReader &reader)
{ {
qDebug() << Q_FUNC_INFO;
Project::restoreSettingsImpl(reader); Project::restoreSettingsImpl(reader);
if (buildConfigurations().isEmpty()) { if (buildConfigurations().isEmpty()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment