| 123456789101112131415 |
- 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 = ['PKG_USING_COREMARK'], CPPPATH = path, LOCAL_CCFLAGS = LOCAL_CCFLAGS)
- Return('group')
|