SConscript 244 B

12345678910111213
  1. from building import *
  2. import os
  3. src = []
  4. path = []
  5. cwd = GetCurrentDir()
  6. if not GetDepend('PKG_USING_CMSIS_CORE'):
  7. path += [os.path.join(cwd, 'include')]
  8. group = DefineGroup('cmsis', src, depend = [''], CPPPATH = path)
  9. Return('group')