Files
luban-lite-t3e-pro/packages/third-party/benchmark/stream/SConscript
刘可亮 7bbc029dae v1.0.0
2023-08-30 16:21:18 +08:00

16 lines
351 B
Python

from building import *
import rtconfig
# get current directory
cwd = GetCurrentDir()
# The set of source files associated with this SConscript file.
src = Glob('*.c')
path = [cwd + '/']
LOCAL_CCFLAGS = ''
group = DefineGroup('stream', src, depend = ['LPKG_USING_STREAM'], CPPPATH = path, LOCAL_CCFLAGS = LOCAL_CCFLAGS)
Return('group')