我已成功使用this guide.静态编译Qt 5.9.2我能够部署基本的C ++应用程序。但是,我想在我的应用程序中使用QML和Qt3D并静态链接它。我一直在网上看,我不完全确定我需要做哪些修改才能使它工作。
当我尝试使用QML或Qt3D编译项目时,我收到此错误。
:-1: error: Unknown module(s) in QT: 3dcore 3drender 3dinput 3dquick qml quick 3dquickextras datavisualization
我用来配置构建的configure命令是:
configure -debug-and-release -opensource -platform win32-msvc2012 -opengl desktop -static -nomake examples -nomake tests
此配置在qtbase
文件夹中完成。
如何静态编译Qt 5.9.2以包含QML和Qt3D?