mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-19 13:43:30 +08:00
12 lines
233 B
Python
12 lines
233 B
Python
# RT-Thread building script for component
|
|
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = ['termios.c']
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('POSIX', src, depend = ['RT_USING_POSIX_TERMIOS'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|