1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 06:05:24 +02:00

Fix for the CDT Variables (Build Macros) functionality

This commit is contained in:
Mikhail Sennikovsky 2007-04-20 09:44:23 +00:00
parent fbfc4521e6
commit 72a57a2bbb

View file

@ -52,11 +52,13 @@ public class BuildVariablesContributor implements ICdtVariablesContributor {
switch(type){
case IBuildMacroProvider.CONTEXT_CONFIGURATION:
return new ICdtVariableSupplier[]{
new ExternalExtensionMacroSupplier(fMngr, fCfgDes)
new ExternalExtensionMacroSupplier(fMngr, fCfgDes),
MbsMacroSupplier.getInstance()
};
case IBuildMacroProvider.CONTEXT_PROJECT:
return new ICdtVariableSupplier[]{
new ExternalExtensionMacroSupplier(fMngr, fCfgDes)
new ExternalExtensionMacroSupplier(fMngr, fCfgDes),
MbsMacroSupplier.getInstance()
};
case IBuildMacroProvider.CONTEXT_WORKSPACE:
return new ICdtVariableSupplier[]{