4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-12 08:59:08 +08:00

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-28 22:30:35 -05:00
src = Glob('*.c')
2020-09-05 15:42:03 +08:00
CPPPATH = [cwd]
2021-11-28 22:30:35 -05:00
group = DefineGroup('POSIX', src, depend = ['RT_USING_POSIX_GETLINE'], CPPPATH = CPPPATH)
2020-09-05 15:42:03 +08:00
Return('group')