1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42: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:
Mikhail Sennikovsky 2006-05-25 15:37:33 +00:00
parent 634cd9cbf1
commit 3460bc971f

View file

@ -189,9 +189,9 @@ public class ManagedBuildCPathEntryContainer implements IPathEntryContainer {
mCollector.setProject(project);
ManagedBuildCPathEntryContainer.outputTrace(project.getName(), "Path entries collected dynamically"); //$NON-NLS-1$
calculateEntriesDynamically((IProject)info.getOwner(), profileInstance, collector);
addEntries(info.getManagedBuildValues());
addIncludePaths(mCollector.getIncludePaths());
addDefinedSymbols(mCollector.getDefinedSymbols());
addEntries(info.getManagedBuildValues());
} else {
// If none supplied, use the built-ins
if (defaultConfig != null) {