Files
luban-lite-t3e-pro/packages/third-party/benchmark/stream/SConscript

16 lines
366 B
Python
Raw Normal View History

2025-09-30 11:56:06 +08:00
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')