4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-17 01:33:31 +08:00
2018-11-19 09:49:32 +08:00

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')