0

我无法使用各种版本的 cmake 在 Windows 上编译 qt 共享库(64 位)。我认为在选择 cmake 选项时犯了一些错误。任何人都可以向我指出一些教程或告诉我要遵循的步骤。提前致谢。(我不能为此使用视觉工作室。)

4

1 回答 1

1

这篇文章对我有用:

@ECHO OFF
rmdir /Q /S C:\Qt\qt-git-build
mkdir C:\Qt\qt-git-build
cd C:\Qt\qt-git-build
..\qt-git\configure -opensource -mp -qt-zlib
nmake
nmake qdoc3
editbin /STACK:0x200000 bin\qdoc3.exe
nmake docs
nmake install
nmake clean
cd ..
于 2012-08-04T19:51:14.043 回答