rt-thread/components/libc/posix/libdl/SConscript

13 lines
269 B
Python
Raw Normal View History

2013-01-08 22:40:58 +08:00
from building import *
2017-10-13 12:44:54 +08:00
Import('rtconfig')
2013-01-08 22:40:58 +08:00
src = Glob('*.c') + Glob('arch/*.c')
cwd = GetCurrentDir()
2017-10-13 12:44:54 +08:00
group = []
CPPPATH = [cwd]
if rtconfig.PLATFORM in ['gcc']:
group = DefineGroup('POSIX', src, depend = ['RT_USING_MODULE'], CPPPATH = CPPPATH)
2013-01-08 22:40:58 +08:00
Return('group')