stm32f103-template/rt-thread/components/lwp/arch/x86/i386/SConscript

12 lines
252 B
Python
Raw Normal View History

2023-05-09 22:30:49 +08:00
# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.S')
CPPPATH = [cwd]
group = DefineGroup('lwp-x86-i386', src, depend = ['RT_USING_SMART'], CPPPATH = CPPPATH)
Return('group')