Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] Template CreateSourceFolder question

Hi,

       I can create templates successfully for my projects, i am facing a problem while creating source folders from templates. When the template executes the CreateSourceFolder process i get the following path entries in my configuraton file

<?xml version="1.0" encoding="UTF-8"?>
<?fileVersion 4.0.0?>

<cproject>
<storageModule moduleId="org.eclipse.cdt.core.settings">
<cconfiguration id=" org.eclipse.cdt.core.default.config.1484871577">
<storageModule buildSystemId="org.eclipse.cdt.core.defaultConfigDataProvider" id="org.eclipse.cdt.core.default.config.1484871577" moduleId=" org.eclipse.cdt.core.settings" name="Configuration">
<externalSettings/>
<extensions>
<extension id="org.eclipse.cdt.core.fastIndexer" point="org.eclipse.cdt.core.CIndexer "/>
<extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/>
</extensions>
</storageModule>
<storageModule moduleId="org.eclipse.cdt.core.externalSettings "/>
<storageModule moduleId="org.eclipse.cdt.make.core.buildtargets"/>
<storageModule moduleId="org.eclipse.cdt.core.pathentry">
<pathentry kind="src" path=""/>
<pathentry kind="src" path="src"/>
</storageModule>
</cconfiguration>
</storageModule>
</cproject>

as it can be seen a dummy source entry with an empty path is added to the configuration file. I cant seem to figure out why this is happening, as a result when the project is created i can see 2 source folders in my project view instead of one

Back to the top