mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-16 17:18:56 +00:00
12 lines
218 B
Python
12 lines
218 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
path = [cwd]
|
|
|
|
src = Glob('*.c')
|
|
|
|
mycflags = ' -w'
|
|
group = DefineGroup('lwIP', src, depend = ['RT_USING_LWIP'], CPPPATH = path, LOCAL_CFLAGS = mycflags)
|
|
|
|
Return('group')
|