mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 08:39:23 +08:00
12 lines
252 B
Python
12 lines
252 B
Python
# RT-Thread building script for component
|
|
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*src/*.c') + Glob('src/*.cpp')
|
|
CPPPATH = [cwd + '/inc']
|
|
|
|
group = DefineGroup('M487_StdPeriph', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|