Files
luban-lite-t3e-pro/kernel/rt-thread/components/libc/posix/libdl/SConscript
刘可亮 7bbc029dae v1.0.0
2023-08-30 16:21:18 +08:00

13 lines
269 B
Python

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