1from building import *
2import os
3
4src = []
5path = []
6cwd = GetCurrentDir()
7
8if not GetDepend('PKG_USING_CMSIS_CORE'):
9 path += [os.path.join(cwd, 'include')]
10
11group = DefineGroup('cmsis', src, depend = [''], CPPPATH = path)
12
13Return('group')
14