rt-thread-official/components/libc/posix/aio/SConscript

12 lines
253 B
Python
Raw Normal View History

2017-12-31 14:49:18 +08:00
# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
2017-12-31 14:49:18 +08:00
CPPPATH = [cwd]
group = DefineGroup('POSIX', src, depend = ['RT_USING_POSIX', 'RT_USING_POSIX_AIO'], CPPPATH = CPPPATH)
2017-12-31 14:49:18 +08:00
Return('group')