Files
test_rtt_413/rt-thread/components/fal/SConscript
a1012112796 02210074ec init project
Signed-off-by: a1012112796 <1012112796@qq.com>
2022-09-26 15:41:16 +08:00

15 lines
311 B
Python

from building import *
import rtconfig
cwd = GetCurrentDir()
src = Glob('src/*.c')
CPPPATH = [cwd + '/inc']
if GetDepend(['FAL_USING_SFUD_PORT']):
src += Glob('samples/porting/fal_flash_sfud_port.c')
group = DefineGroup('Fal', src, depend = ['RT_USING_FAL'], CPPPATH = CPPPATH)
Return('group')