25 lines
553 B
Python
25 lines
553 B
Python
import os
|
|
import scripts.app_helper as app
|
|
|
|
CUSTOM_WIDGET_LIBS = [{
|
|
"root" : '3rd/awtk-widget-number-label',
|
|
'shared_libs': ['number_label'],
|
|
'static_libs': []
|
|
},
|
|
{
|
|
"root" : '3rd/awtk-widget-qr',
|
|
'shared_libs': ['qr'],
|
|
'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', 'tests/SConscript']
|
|
helper.SConscript(SConscriptFiles)
|