4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-26 01:37:24 +08:00

15 lines
270 B
Python
Raw Normal View History

2023-08-01 17:15:41 +08:00
# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
src = []
CPPPATH = [cwd]
if GetDepend('RT_USING_POSIX_EPOLL'):
src += ['epoll.c']
group = DefineGroup('POSIX', src, depend = [''], CPPPATH = CPPPATH)
Return('group')