mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +02:00
Make user-defined includes and symbols appear first in the path entry list.
The current order is: 1. User values defined via options 2. User values defined via environment 3. Tool built-ins
This commit is contained in:
parent
634cd9cbf1
commit
3460bc971f
1 changed files with 1 additions and 1 deletions
|
@ -189,9 +189,9 @@ public class ManagedBuildCPathEntryContainer implements IPathEntryContainer {
|
||||||
mCollector.setProject(project);
|
mCollector.setProject(project);
|
||||||
ManagedBuildCPathEntryContainer.outputTrace(project.getName(), "Path entries collected dynamically"); //$NON-NLS-1$
|
ManagedBuildCPathEntryContainer.outputTrace(project.getName(), "Path entries collected dynamically"); //$NON-NLS-1$
|
||||||
calculateEntriesDynamically((IProject)info.getOwner(), profileInstance, collector);
|
calculateEntriesDynamically((IProject)info.getOwner(), profileInstance, collector);
|
||||||
|
addEntries(info.getManagedBuildValues());
|
||||||
addIncludePaths(mCollector.getIncludePaths());
|
addIncludePaths(mCollector.getIncludePaths());
|
||||||
addDefinedSymbols(mCollector.getDefinedSymbols());
|
addDefinedSymbols(mCollector.getDefinedSymbols());
|
||||||
addEntries(info.getManagedBuildValues());
|
|
||||||
} else {
|
} else {
|
||||||
// If none supplied, use the built-ins
|
// If none supplied, use the built-ins
|
||||||
if (defaultConfig != null) {
|
if (defaultConfig != null) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue