mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-15 19:08:54 +00:00
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')
|