Files
test_rtt_413/rt-thread/components/libc/posix/libdl/SConscript
a1012112796 02210074ec init project
Signed-off-by: a1012112796 <1012112796@qq.com>
2022-09-26 15:41:16 +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')