Files
luban-lite-t3e-pro/application/freertos/helloworld/cmd/SConscript
刘可亮 9f7ba67007 v1.0.3
2024-01-27 08:47:24 +08:00

16 lines
273 B
Python

# 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')