8ac855d164
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1293 bbd45198-f89e-11dd-88c7-29a3b14d5316
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')
|