4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-19 11:11:31 +08:00
2021-12-30 01:27:25 +08:00

15 lines
265 B
Python

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