4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-08 19:51:09 +08:00
2022-08-22 23:39:39 -04:00

17 lines
310 B
Python

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