Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] extension org.eclipse.cdt.core.LanguageSettingsProvider

hi every one.
i m pretty new here.
i have extend the LanguageSettingsProvider in the plugin.xml. which have done.
but i want to be cleared if there is a way to make it editable.
(i have extend org.eclipse.cdt.build.core.settings.holder.symbols and it just work fine btw)

this is what in the plugin.xml:
   <extension point="org.eclipse.cdt.core.LanguageSettingsProvider">
      <provider id="org.eclipse.cdt.ui.UserLanguageSettingsProvider" name="build in macroFile"
            prefer-non-shared="true" store-entries-with-project="true">
         <entry kind="macroFile" name="/${ProjName}/include/generated/autoconf.h">
            <flag value="LOCAL|VALUE_WORKSPACE_PATH|EXPORTED"></flag>
         </entry>
         <language-scope id="org.eclipse.cdt.core.gcc"></language-scope>
      </provider>
   </extension>

after i built a new c project, the one with the name of "${ProjName}/include/generated/autoconf.h" shows in the "build in macroFile"
is not editable.

 it need to be the same name that shows in the Entries of "Preprocessor Include Paths, Macros etc."

if the the name changed to :
name="CDT User Setting Entries"
the new line i put there does not show up.
what's the problem ???

Back to the top