4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-18 11:33:32 +08:00

15 lines
226 B
Python
Raw Normal View History

from building import *
import rtconfig
cwd = GetCurrentDir()
src = []
src += Glob('*.c')
CPPPATH = [cwd]
group = DefineGroup('EasyFlash', src, depend = ['PKG_USING_EASYFLASH'], CPPPATH = CPPPATH)
Return('group')