Files
luban-lite-t3e-pro/packages/third-party/gif/SConscript
2025-09-30 11:56:06 +08:00

18 lines
361 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')