16 lines
322 B
Python
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')
|