rt-thread-official/bsp/gkipc/armv6/SConscript

11 lines
251 B
Python
Raw Normal View History

2018-03-04 08:21:19 +08:00
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
src += Glob('*.s')
path = [cwd, cwd + '../../../include', cwd + '/../libraries/inc', cwd + '/../drivers']
2020-12-19 16:49:11 +08:00
group = DefineGroup('CPU', src, depend = [''], CPPPATH = path)
2018-03-04 08:21:19 +08:00
Return('group')