1Import('RTT_ROOT')
2Import('rtconfig')
3from building import *
4
5cwd = GetCurrentDir()
6
7# add the general drivers.
8src = Split("""
9""")
10
11# src += ['drv_common.c']
12
13path = [cwd + '/include']
14
15group = DefineGroup('CMSIS', src, depend = [''], CPPPATH = path)
16
17Return('group')
18