mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-01 23:20:24 +08:00
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')
|