Files
luban-lite-t3e-pro/packages/artinchip/aic-startup-ui/SConscript

17 lines
330 B
Python
Raw Normal View History

2024-09-03 11:16:08 +08:00
Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd]
src = []
if GetDepend('AIC_STARTUP_UI_SHOW'):
src = Glob('*.c')
2025-01-08 19:12:06 +08:00
install=[('assets/', 'data/')]
group = DefineGroup('startup-ui', src, depend = ['AIC_STARTUP_UI_SHOW'], CPPPATH = CPPPATH, INSTALL=install)
2024-09-03 11:16:08 +08:00
Return('group')