mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-04 20:34:33 +08:00
9 lines
153 B
Python
9 lines
153 B
Python
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
src = Split('board.c')
|
||
|
|
||
|
group = DefineGroup('Board', src, depend = [''], CPPPATH = [cwd])
|
||
|
|
||
|
Return('group')
|