Files
luban-lite-t3e-pro/packages/third-party/gif/SConscript

18 lines
344 B
Python
Raw Normal View History

2024-04-03 16:40:57 +08:00
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')