4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-01 20:31:25 +08:00
2023-09-11 14:06:08 +08:00

16 lines
322 B
Python

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