Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我们的构建服务器(Windows)中编译我的 Qt 项目。我想创建一个构建脚本,它将在发布时编译我的项目。有人可以帮我写这个构建脚本吗?
谢谢!
您只需要运行 qmake,然后为类 Unix 平台运行 make。对于发布模式添加:
CONFIG+=release
到您的 .pro 文件或 qmake 命令。然后(仅当您知道需要时才指定):
path_to_your_qmake/qmake [-spec spec] [CONFIG+=release] make [-jwhatever]
你就完成了。