4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-18 11:43:34 +08:00

[NET] Add telnet app to netutils.

This commit is contained in:
armink 2017-08-18 11:29:26 +08:00
parent f975ef5146
commit 5910ae4170
3 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1 @@
Some net utils which using standard interface such as BSD Sockets.

View File

@ -0,0 +1,10 @@
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]
group = DefineGroup('LwIP', src, depend = ['RT_USING_NETUTILS'], CPPPATH = CPPPATH)
Return('group')