11 lines
197 B
Python
Raw Normal View History

2015-01-26 06:36:00 +00:00
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]
2020-12-19 16:49:11 +08:00
group = DefineGroup('lwIP', src, depend = ['RT_USING_LWIP', 'LWIP_USING_NAT'], CPPPATH = CPPPATH)
2015-01-26 06:36:00 +00:00
Return('group')