Files
luban-lite/packages/third-party/benchmark/coremark/SConscript
刘可亮 564e22b32f v0.7.5
2023-08-28 09:48:01 +08:00

16 lines
355 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('coremark', src, depend = ['LPKG_USING_COREMARK'], CPPPATH = path, LOCAL_CCFLAGS = LOCAL_CCFLAGS)
Return('group')