11 lines
175 B
Python
Raw Normal View History

2024-08-05 20:57:09 +08:00
from building import *
cwd = GetCurrentDir()
path = [cwd]
src = Glob('*.c')
group = DefineGroup('lwIP', src, depend = ['RT_USING_LWIP'], CPPPATH = path)
Return('group')