4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-23 07:07:23 +08:00

14 lines
252 B
Python

Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]
if rtconfig.PLATFORM in ['gcc']:
src += Glob('*_gcc.S')
group = DefineGroup('CPU', src, depend = [''], CPPPATH = CPPPATH)
Return('group')