Files
luban-lite-t3e-pro/packages/third-party/benchmark/linpack/SConscript
2025-09-30 11:56:06 +08:00

16 lines
370 B
Python

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