G-CAMS-DATU/rt-thread/components/libc/posix/io/signalfd/SConscript

16 lines
348 B
Python
Raw Permalink Normal View History

2024-05-13 08:08:47 +00:00
# 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','RT_USING_POSIX_SIGNALFD'], CPPPATH = CPPPATH)
Return('group')