Files
player/Project/Src/rt-thread/libcpu/arc/em/SConscript

18 lines
295 B
Python
Raw Permalink Normal View History

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