mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-01 14:15:23 +02:00
Fix for the CDT Variables (Build Macros) functionality
This commit is contained in:
parent
fbfc4521e6
commit
72a57a2bbb
1 changed files with 4 additions and 2 deletions
|
@ -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[]{
|
||||
|
|
Loading…
Add table
Reference in a new issue