4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-08 20:11:10 +08:00

15 lines
274 B
Python
Raw Normal View History

2023-07-27 17:24:56 +08:00
# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
src = []
CPPPATH = [cwd]
if GetDepend('RT_USING_POSIX_EVENTFD'):
src += ['eventfd.c']
group = DefineGroup('POSIX', src, depend = [''], CPPPATH = CPPPATH)
Return('group')