9f543f7065
Signed-off-by: WillianChan <willianchan_lovelife@foxmail.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')
|