| 1234567891011 |
- from building import *
- # get current directory
- cwd = GetCurrentDir()
- # The set of source files associated with this SConscript file.
- src = Glob('can_ymodem.c')
- path = [cwd]
- group = DefineGroup('DeviceDrivers', src, depend = ['PKG_USING_CAN_YMODEM'], CPPPATH = path)
- Return('group')
|