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

16 lines
322 B
Python
Raw Normal View History

2023-09-11 14:06:08 +08: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'], CPPPATH = CPPPATH)
Return('group')