4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-21 13:13:34 +08:00
2024-01-28 13:39:39 +08:00

16 lines
268 B
Python
Executable File

# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
src = Split('''
board.c
interrupt.c
startup_gcc.S
''')
CPPPATH = [cwd]
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')