rt-thread/components/libc/pthreads/SConscript

11 lines
208 B
Python
Raw Normal View History

2013-01-08 22:40:58 +08:00
from building import *
cwd = GetCurrentDir()
2013-01-08 22:40:58 +08:00
src = Glob('*.c')
CPPPATH = [cwd]
2017-10-13 12:44:54 +08:00
group = DefineGroup('pthreads', src,
depend = ['RT_USING_PTHREADS', 'RT_USING_LIBC'], CPPPATH = CPPPATH)
2013-01-08 22:40:58 +08:00
Return('group')