Hi, I’m trying to build a static version of Qt 5.3.1 from Git on Windows with MSVC 2013.
I was getting an error about qsqlite.lib being missing, so I searched on the forums and found that I have to disable compilation of examples by passing “-nomake examples” to configure.bat.
But this doesn’t seem to work because configure says that I’m still building examples:
Configuration:
pcre
release
compile_examples <-- see?
and I’m getting the same link error.
Here’s my command line:
configure -prefix C:\Qt\5.3\msvc2013_64_static -static -release -opensource -platform win32-msvc2013 -nomake tests -nomake examples
Am I missing something?
Edit:
OK, I fixed it! Cleaning everything again with git submodule foreach —recursive “git clean -dfx” did the trick.
↧