Files
luban-lite-t3e-pro/packages/artinchip/burn-in/SConscript
刘可亮 803cac77d5 V1.0.6
2024-09-03 11:16:08 +08:00

14 lines
273 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')