Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] question about multi outputTypes

Hello cdt-dev,

  here's a tool has multi outputTypes, and I want every outputTypes' buildVariable contains files with special extensions? and the output are also other tool's input! something looks like:

MyTool
  + outputTypeA (primaryOutputType)
      + outputs extA
      + buildVariable MacroA
  + outputTypeB
      + outputs extB
      + buildVariable MacroB
  + outputTypeC
      + outputs extB
      + buildVariable MacroB

the generated makefile always looks like:
  MacroA += \
    *.extA \
    *.extB \
    *.extC \

but what I wanted is:
  MacroA += \
    *.extA \

  MacroB += \
    *.extB \

  MacroC += \
    *.extC \

is it possible?


-- 
Best regards,
 missedone                          mailto:missedone@xxxxxxxxx



Back to the top