mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 02:18:54 +00:00
14 lines
300 B
Python
14 lines
300 B
Python
|
|
Import('RTT_ROOT')
|
||
|
|
Import('rtconfig')
|
||
|
|
from building import *
|
||
|
|
|
||
|
|
objs = []
|
||
|
|
cwd = GetCurrentDir()
|
||
|
|
list = os.listdir(cwd)
|
||
|
|
src = Glob('*.c') + Glob('*.cpp')
|
||
|
|
CPPPATH = [cwd, str(Dir('#'))]
|
||
|
|
|
||
|
|
group = DefineGroup('cpu_usage', src, depend = ['LPKG_USING_CPU_USAGE'], CPPPATH = CPPPATH)
|
||
|
|
|
||
|
|
Return('group')
|