Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
qt-creator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tobias Hunger
qt-creator
Commits
752a6413
Commit
752a6413
authored
16 years ago
by
Roberto Raggi
Browse files
Options
Downloads
Patches
Plain Diff
Don't convert the include paths
parent
f167218d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/genericprojectmanager/genericproject.cpp
+3
-1
3 additions, 1 deletion
src/plugins/genericprojectmanager/genericproject.cpp
with
3 additions
and
1 deletion
src/plugins/genericprojectmanager/genericproject.cpp
+
3
−
1
View file @
752a6413
...
@@ -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
())
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment