mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-15 02:48:54 +00:00
14 lines
272 B
Python
14 lines
272 B
Python
# RT-Thread building script for component
|
|
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c') + Glob('*.cpp')
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('POSIX', src,
|
|
depend = ['RT_USING_SIGNALS', 'RT_USING_PTHREADS'],
|
|
CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|