improve build scripts

This commit is contained in:
xianjimli 2020-08-18 20:26:49 +08:00
parent 0fd635337b
commit c78c232906
2 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,7 @@
* 2020/08/18
* 修复了一些潜在的内存泄露。
* button支持设置长按时间。
* 完善编译脚本(感谢朝泽提供补丁)
* 2020/08/17
* 增加文档《项目描述文件 project.json 介绍》(感谢朝泽提供补丁)

View File

@ -216,6 +216,7 @@ class AppHelperBase:
RES_ROOT = ARGUMENTS.get('RES_ROOT', '')
if len(RES_ROOT) > 0:
APP_RES_ROOT = RES_ROOT
self.APP_RES = os.path.abspath(os.path.join(self.APP_BIN_DIR, RES_ROOT))
SHARED = ARGUMENTS.get('SHARED', '')
if len(SHARED) > 0 and SHARED.lower().startswith('f'):