linuxdeployqt参数
时间: 2023-10-13 09:06:56 浏览: 157
linuxdeployqt源码
Linuxdeployqt 是一个将 Qt 应用程序打包为 AppImage 的工具,可以在不同的 Linux 发行版上运行。下面是常用的一些参数:
- -appimage:生成 AppImage 文件。
- -qmake:指定 qmake 路径。
- -executable:指定可执行文件路径。
- -bundle-non-qt-libs:将程序所依赖的非 Qt 库打包进 AppImage 中。
- -no-strip:不剥离可执行文件中的符号表信息。
- -no-translations:不将翻译文件打包进 AppImage 中。
- -no-plugins:不将 Qt 插件打包进 AppImage 中。
- -no-system-dbus:不使用系统的 D-Bus。
- -no-strip:不剥离可执行文件中的符号表信息。
- -no-appimage-extract-and-run:不在运行时从 AppImage 中提取文件。
更多参数可以通过运行 `linuxdeployqt --help` 命令查看。
阅读全文