xref: /nrf52832-nimble/rt-thread/components/libc/signal/SConscript (revision 167494296f0543431a51b6b1b83e957045294e05)
1# RT-Thread building script for component
2
3from building import *
4
5cwd = GetCurrentDir()
6src = Glob('*.c') + Glob('*.cpp')
7CPPPATH = [cwd]
8
9group = DefineGroup('libc', src,
10    depend = ['RT_USING_SIGNALS', 'RT_USING_PTHREADS', 'RT_USING_LIBC'],
11    CPPPATH = CPPPATH)
12
13Return('group')
14