mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
18 lines
344 B
Python
18 lines
344 B
Python
Import('RTT_ROOT')
|
|
Import('rtconfig')
|
|
from building import *
|
|
|
|
objs = []
|
|
cwd = GetCurrentDir()
|
|
list = os.listdir(cwd)
|
|
src = Glob('*.c') + Glob('*.cpp')
|
|
|
|
if GetDepend(['GIF_USING_SAMPLES']):
|
|
src += Glob('samples/*.c')
|
|
|
|
path = [cwd]
|
|
|
|
group = DefineGroup('cpu_usage', src, depend = ['LPKG_USING_GIF'], CPPPATH = path)
|
|
|
|
Return('group')
|