4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-17 02:43:32 +08:00
2020-11-20 13:38:11 +08:00

16 lines
258 B
Python

# RT-Thread building script for component
from building import *
Import('rtconfig')
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]
src += Glob('*.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH)
Return('group')