SConscript 263 B

123456789101112131415
  1. # for module compiling
  2. import os
  3. Import('RTT_ROOT')
  4. from building import *
  5. cwd = GetCurrentDir()
  6. # The set of source files associated with this SConscript file.
  7. src = Split("""
  8. main.c
  9. """)
  10. group = DefineGroup('Driver', src, depend = [''])
  11. Return('group')