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

16 lines
355 B
Python
Raw Normal View History

2023-08-30 16:21:18 +08:00
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')