2025-04-08 18:46:12 +08:00

15 lines
351 B
Python

from building import *
# get current directory
cwd = GetCurrentDir()
# The set of source files associated with this SConscript file.
src = Glob('src/*.c')
src += Glob('port/*.c')
path = [cwd + '/inc']
path += [cwd + '/port']
group = DefineGroup('EasyFlash', src, depend = ['PKG_USING_EASYFLASH'], CPPPATH = path)
Return('group')