awtk/docs/how_to_release_app.md
2020-09-02 09:56:05 +08:00

14 lines
800 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 如何将生成的可执行文件和资源打包
在开发完成后通常需要将可执行文件和运行时需要的资源拷贝出来发给客户或放到板子上运行。AWTK 提供了一个脚本 scripts/release.py将可执行文件和运行时需要的资源拷贝出来放到当前目录的 release 子目录下。用法如下:
假如当前项目是 awtk-hello在 awtk-hello 目录中运行下面的命令:
```
python ../awtk/scripts/release.py hello_awtk.exe
```
> Linux/MacOS/LinuxFB 不能带 .exe 扩展名。
> 本脚本适用于 Linux、Windows、MacOS、Linux_FB不适用于其它嵌入式系统。对于其它嵌入式系统本脚本可以将运行时需要的资源拷贝出来放到开发板的 T 卡上,自己删除 release/bin 目录即可。