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

20 lines
385 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 = []
2025-04-23 17:54:31 +08:00
install = []
2024-09-03 11:16:08 +08:00
if GetDepend('AIC_STARTUP_UI_SHOW'):
src = Glob('*.c')
2025-04-23 17:54:31 +08:00
if GetDepend('AIC_STARTUP_UI_SHOW'):
install=[('assets/', 'data/')]
2025-01-08 19:12:06 +08:00
group = DefineGroup('startup-ui', src, depend = ['AIC_STARTUP_UI_SHOW'], CPPPATH = CPPPATH, INSTALL=install)
2024-09-03 11:16:08 +08:00
Return('group')