mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 10:28:54 +00:00
14 lines
273 B
Python
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')
|