rt-thread/components/libc/time/SConscript

13 lines
250 B
Python
Raw Normal View History

# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp')
CPPPATH = [cwd]
2017-12-31 16:43:08 +08:00
group = DefineGroup('pthreads', src,
depend = ['RT_USING_PTHREADS'], CPPPATH = CPPPATH)
Return('group')