Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] Eclipse 3.0RC1/CDT 2.0M9 source file exclusions in managed make

No matter what I do, I can't get C source files excluded from a managed make (cygwin 3.3.1/WinXP)
 
My .cdtproject looks like this:
 
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse-cdt version="2.0"?>
 
<cdtproject id="org.eclipse.cdt.make.core.make">
<extension point="org.eclipse.cdt.core.BinaryParser" id="org.eclipse.cdt.core.ELF"/>
<data>
<item id="cdt_indexer">
<indexEnabled indexValue="true"/>
<indexerProblemsEnabled indexProblemsValue="true"/>
</item>
<item id="org.eclipse.cdt.core.pathentry">
<pathentry kind="con" path="org.eclipse.cdt.managedbuilder.MANAGED_CONTAINER"/>
<pathentry kind="src" path="" excluding="**/devices.c"/>
<pathentry kind="out" path=""/>
<pathentry kind="inc" path="" include="C:/dev/cygwin/usr/include"/>
</item>
</data>
</cdtproject>
But devices.c is always included in the auto-generated make. I have tried every conceivable combination of ways to try and exclude source files and folder but I can't make it work.
 
Should it? Is anyone currently using with my platform combination?
 
I have tried setting up individual source folder in the Project->Properties panel, but the managed make seems to always include all source file in the project, regardless of the Project Paths settings
 
I'd appreciate any help or further information anyone could provide.
 
Thanks,
Matthew

Back to the top