[posix] 按照高级unix环境编程整理IO类别

This commit is contained in:
Meco Man
2021-12-05 18:52:59 -05:00
parent 3dd1aa754c
commit 67e14adc4f
22 changed files with 240 additions and 136 deletions

View File

@@ -0,0 +1,11 @@
# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
src = ['poll.c']
CPPPATH = [cwd]
group = DefineGroup('POSIX', src, depend = ['RT_USING_POSIX_POLL'], CPPPATH = CPPPATH)
Return('group')