mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 10:28:54 +00:00
17 lines
330 B
Python
Executable File
17 lines
330 B
Python
Executable File
Import('AIC_ROOT')
|
|
Import('PRJ_KERNEL')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = [cwd]
|
|
|
|
src = []
|
|
|
|
if GetDepend('AIC_STARTUP_UI_SHOW'):
|
|
src = Glob('*.c')
|
|
|
|
install=[('assets/', 'data/')]
|
|
group = DefineGroup('startup-ui', src, depend = ['AIC_STARTUP_UI_SHOW'], CPPPATH = CPPPATH, INSTALL=install)
|
|
|
|
Return('group')
|