Files
luban-lite-t3e-pro/packages/artinchip/burn-in/SConscript
2025-09-30 11:56:06 +08:00

14 lines
286 B
Python

from building import *
import os
cwd = GetCurrentDir()
CPPPATH = [cwd]
src = ['burn_in.c']
if GetDepend('LPKG_BURN_IN_PLAYER_ENABLE'):
src += ['burn_in_player.c']
group = DefineGroup('burn', src, depend = ['LPKG_BURN_IN'], CPPPATH = CPPPATH)
Return('group')