Files
2025-09-30 11:56:06 +08:00

17 lines
356 B
Python

# RT-Thread building script for component
from building import *
Import('rtconfig')
cwd = GetCurrentDir()
group = []
if GetDepend('AIC_AB_SYSTEM_INTERFACE'):
src = Glob('*.c')
CPPPATH = [cwd]
ASFLAGS = ''
group = DefineGroup('ABSYSTEM', src, depend = [''], CPPPATH = CPPPATH, ASFLAGS = ASFLAGS)
Return('group')