mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-15 16:49:55 +08:00
12 lines
260 B
Python
12 lines
260 B
Python
import rtconfig
|
|
Import('RTT_ROOT')
|
|
from building import *
|
|
|
|
src_bsp = ['application.c', 'startup.c', 'board.c']
|
|
|
|
src = File(src_bsp)
|
|
CPPPATH = [RTT_ROOT + '/bsp/avr32uc3b0']
|
|
group = DefineGroup('Startup', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|