SConscript 369 B

12345678910111213141516
  1. from building import *
  2. import rtconfig
  3. Import('RTT_ROOT')
  4. # get current directory
  5. cwd = GetCurrentDir()
  6. src = []
  7. path = []
  8. if GetDepend(['KIT_PROCE84_EVK_M33']):
  9. path += [cwd + '/COMPONENT_CM33/inc']
  10. if GetDepend(['KIT_PROCE84_EVK_M55']):
  11. path += [cwd + '/COMPONENT_CM33/inc']
  12. group = DefineGroup('Libraries', src, depend=[''], CPPPATH=path)
  13. Return('group')