11 lines
218 B
Python
11 lines
218 B
Python
|
Import('RTT_ROOT')
|
||
|
Import('rtconfig')
|
||
|
from building import *
|
||
|
|
||
|
src = Glob('*.c')
|
||
|
CPPPATH = [GetCurrentDir()]
|
||
|
|
||
|
group = DefineGroup('CMSIS', src, depend = [''], CPPPATH = CPPPATH, LIBRARY = '')
|
||
|
|
||
|
Return('group')
|