mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 18:43:31 +08:00
14 lines
230 B
Python
Executable File
14 lines
230 B
Python
Executable File
# RT-Thread building script for component
|
|
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Split('''
|
|
board.c
|
|
''')
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|