02210074ec
Signed-off-by: a1012112796 <1012112796@qq.com>
9 lines
199 B
Python
9 lines
199 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
CPPPATH = [cwd]
|
|
group = DefineGroup('var_export', src, depend = ['RT_USING_VAR_EXPORT'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|