Files

16 lines
345 B
Python
Raw Permalink Normal View History

2025-09-30 11:56:06 +08:00
# RT-Thread building script for component
from building import *
Import('rtconfig')
cwd = GetCurrentDir()
group = []
if GetDepend('LPKG_USING_FDTLIB'):
src = Glob('*.c')
CPPPATH = [cwd]
ASFLAGS = ''
group = DefineGroup('BLDRV', src, depend = [''], CPPPATH = CPPPATH, ASFLAGS = ASFLAGS)
2023-11-09 20:19:51 +08:00
Return('group')