mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-15 14:36:16 +08:00
13 lines
248 B
Python
13 lines
248 B
Python
Import('RTT_ROOT')
|
|
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = os.path.join(str(Dir('#')), 'board')
|
|
src = Glob('*.c')
|
|
src += Glob('*.s')
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('Board', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|