mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-11-16 04:24:33 +00:00
15 lines
269 B
Python
15 lines
269 B
Python
# 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('Libc', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|