mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-30 02:58:26 +08:00
39 lines
1019 B
Python
39 lines
1019 B
Python
import os
|
|
import awtk_config as awtk
|
|
|
|
DefaultEnvironment(CCFLAGS = awtk.CCFLAGS,
|
|
LIBS = awtk.LIBS,
|
|
LIBPATH = awtk.LIBPATH,
|
|
CPPPATH = awtk.CPPPATH,
|
|
LINKFLAGS = awtk.LINKFLAGS,
|
|
OS_SUBSYSTEM_CONSOLE=awtk.OS_SUBSYSTEM_CONSOLE,
|
|
OS_SUBSYSTEM_WINDOWS=awtk.OS_SUBSYSTEM_WINDOWS
|
|
)
|
|
|
|
SConscriptFiles=awtk.NANOVG_BACKEND_PROJS + [
|
|
'3rd/nanovg/SConscript',
|
|
'3rd/glad/SConscript',
|
|
'3rd/gpinyin/SConscript',
|
|
'3rd/libunibreak/SConscript',
|
|
'src/SConscript',
|
|
'tools/common/SConscript',
|
|
'tools/theme_gen/SConscript',
|
|
'tools/font_gen/SConscript',
|
|
'tools/image_gen/SConscript',
|
|
'tools/image_resize/SConscript',
|
|
'tools/res_gen/SConscript',
|
|
'tools/str_gen/SConscript',
|
|
'tools/ui_gen/qt_to_xml/SConscript',
|
|
'tools/ui_gen/xml_to_ui/SConscript',
|
|
'tools/svg_gen/SConscript',
|
|
'demos/SConscript',
|
|
'tests/SConscript'
|
|
] + awtk.OS_PROJECTS
|
|
|
|
os.environ['TK_ROOT'] = awtk.TK_ROOT;
|
|
os.environ['BIN_DIR'] = awtk.TK_BIN_DIR;
|
|
os.environ['LIB_DIR'] = awtk.TK_LIB_DIR;
|
|
|
|
SConscript(SConscriptFiles)
|
|
|