Files
player/Project/Src/rt-thread/components/libc/compilers/common/SConscript
2025-06-27 00:32:57 +08:00

13 lines
213 B
Python

from building import *
Import('rtconfig')
src = Glob('*.c')
cwd = GetCurrentDir()
group = []
CPPPATH = [cwd]
group = DefineGroup('libc', src, depend = ['RT_USING_LIBC'], CPPPATH = CPPPATH)
Return('group')