Files
luban-lite/kernel/rt-thread/components/net/lwip/port/SConscript

12 lines
212 B
Python
Raw Normal View History

2023-08-30 16:21:18 +08:00
from building import *
cwd = GetCurrentDir()
path = [cwd]
src = Glob('*.c')
2025-01-08 19:12:06 +08:00
mycflags = ' -w'
group = DefineGroup('lwIP', src, depend = ['RT_USING_LWIP'], CPPPATH = path, CFLAGS = mycflags)
2023-08-30 16:21:18 +08:00
Return('group')