f02f51d2e3
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1580 bbd45198-f89e-11dd-88c7-29a3b14d5316
16 lines
324 B
Python
16 lines
324 B
Python
import rtconfig
|
|
Import('RTT_ROOT')
|
|
from building import *
|
|
|
|
src_bsp = ['application.c', 'startup.c', 'board.c']
|
|
src_drv = []
|
|
|
|
|
|
|
|
src = src_bsp + src_drv
|
|
CPPPATH = [ GetCurrentDir() ]
|
|
CPPDEFINES = []
|
|
group = DefineGroup('Startup', src, depend = [''], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
|
|
|
|
Return('group')
|