4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-26 14:57:23 +08:00

12 lines
233 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 = ['aio.c']
2017-12-31 14:49:18 +08:00
CPPPATH = [cwd]
group = DefineGroup('POSIX', src, depend = ['RT_USING_POSIX_AIO'], CPPPATH = CPPPATH)
2017-12-31 14:49:18 +08:00
Return('group')