美文网首页
2020-08-03 手动编译Qt库(msvc2019版本)

2020-08-03 手动编译Qt库(msvc2019版本)

作者: 阿群1986 | 来源:发表于2020-08-09 10:09 被阅读0次

    -skip qtwebengine
    qtwebengine不支持static
    configure.bat -static -release -opensource -confirm-license -platform win32-msvc -mp -prefix "C:\Qt\5.15.0_MSVC2019_Static" -qt-sqlite -qt-zlib -qt-libpng -qt-libjpeg -opengl desktop -qt-freetype -no-qml-debug -no-angle -nomake tests -nomake examples -skip qtwebengine


    Windows下为了编译QtWebEngine组件,必须安装好Windows版本的perl和python2.7.18,QtWebEngine的编译系统并不支持python3.x

    • 使用-static生成静态Qt库

    configure.bat -static -release -opensource -confirm-license -platform win32-msvc -mp -prefix "C:\Qt\5.15.0_MSVC2019_Static" -qt-sqlite -qt-zlib -qt-libpng -qt-libjpeg -opengl desktop -qt-freetype -no-qml-debug -no-angle -nomake tests -nomake examples

    configure.bat -confirm-license -opensource -platform win32-msvc -mp -debug-and-release -static -prefix "D:\Qt\5.15.0_MSVC_Static" -qt-sqlite -qt-zlib -qt-libpng -qt-libjpeg -opengl desktop -qt-freetype -no-qml-debug -no-angle -nomake tests -nomake examples

    附录

    参考:

    相关文章

      网友评论

          本文标题:2020-08-03 手动编译Qt库(msvc2019版本)

          本文链接:https://www.haomeiwen.com/subject/qmivrktx.html