Files
luban-lite-t3e-pro/application/freertos/helloworld/cmd/SConscript

16 lines
288 B
Python
Raw Normal View History

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