SConscript 374 B

12345678910111213
  1. # RT-Thread building script for component
  2. from building import *
  3. cwd = GetCurrentDir()
  4. src = ['interface/src/tfm_sst_api.c']
  5. src += ['interface/src/tfm_ns_lock_rt-thread.c']
  6. src += ['cmake_build/install/export/tfm/veneers/s_veneers.o']
  7. CPPPATH = [cwd + '/interface/include']
  8. group = DefineGroup('TFM', src, depend = ['PKG_USING_TFM'], CPPPATH = CPPPATH)
  9. Return('group')