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

17 lines
299 B
Python
Raw Normal View History

2025-01-08 19:12:06 +08:00
# RT-Thread building script for component
2023-08-30 16:21:18 +08:00
from building import *
Import('rtconfig')
cwd = GetCurrentDir()
2025-01-08 19:12:06 +08:00
src = Glob('reset.c')
src += Glob('mem.c')
2023-08-30 16:21:18 +08:00
CPPPATH = [cwd]
ASFLAGS = ''
group = DefineGroup('BLCMD', src, depend = [''], CPPPATH = CPPPATH, ASFLAGS = ASFLAGS)
Return('group')