rt-thread/components/libc/posix/getline/SConscript

12 lines
231 B
Python
Raw Normal View History

2020-09-05 15:42:03 +08:00
# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
2021-11-29 11:30:35 +08:00
src = Glob('*.c')
2020-09-05 15:42:03 +08:00
CPPPATH = [cwd]
2021-11-29 11:30:35 +08:00
group = DefineGroup('POSIX', src, depend = ['RT_USING_POSIX_GETLINE'], CPPPATH = CPPPATH)
2020-09-05 15:42:03 +08:00
Return('group')