mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 10:28:54 +00:00
20 lines
442 B
Python
20 lines
442 B
Python
import os
|
|
import scripts.app_helper as app
|
|
|
|
CUSTOM_WIDGET_LIBS = [{
|
|
"root" : './3rd/awtk-widget-chart-view',
|
|
'shared_libs': ['chart_view'],
|
|
'static_libs': []
|
|
}]
|
|
|
|
DEPENDS_LIBS = CUSTOM_WIDGET_LIBS + []
|
|
|
|
helper = app.Helper(ARGUMENTS)
|
|
helper.set_deps(DEPENDS_LIBS)
|
|
|
|
app.prepare_depends_libs(ARGUMENTS, helper, DEPENDS_LIBS)
|
|
helper.call(DefaultEnvironment)
|
|
|
|
SConscriptFiles = ['src/SConscript']
|
|
helper.SConscript(SConscriptFiles)
|