c834d7cdbd
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1672 bbd45198-f89e-11dd-88c7-29a3b14d5316
16 lines
363 B
Python
16 lines
363 B
Python
Import('RTT_ROOT')
|
|
from building import *
|
|
|
|
src_bsp = ['application.c', 'startup.c', 'board.c']
|
|
|
|
src_drv = ['uart.c']
|
|
|
|
if GetDepend('RT_USING_RTGUI'):
|
|
src_drv += ['display_controller.c']
|
|
|
|
src = File(src_bsp + src_drv)
|
|
CPPPATH = [GetCurrentDir()]
|
|
group = DefineGroup('Startup', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|