mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-18 15:53:32 +08:00
10 lines
212 B
Python
10 lines
212 B
Python
|
import rtconfig
|
||
|
Import('RTT_ROOT')
|
||
|
from building import *
|
||
|
|
||
|
src = Glob('*.c')
|
||
|
CPPPATH = [RTT_ROOT + '/bsp/mini4020']
|
||
|
group = DefineGroup('Startup', src, depend = [''], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|