mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 05:19:23 +08:00
25709dca1c
Signed-off-by: Huaqi Fang <578567190@qq.com>
12 lines
211 B
Python
12 lines
211 B
Python
# RT-Thread building script for component
|
|
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|