mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-18 10:08:53 +00:00
11 lines
175 B
Python
11 lines
175 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
path = [cwd]
|
|
|
|
src = Glob('*.c')
|
|
|
|
group = DefineGroup('lwIP', src, depend = ['RT_USING_LWIP'], CPPPATH = path)
|
|
|
|
Return('group')
|