在线观看不卡亚洲电影_亚洲妓女99综合网_91青青青亚洲娱乐在线观看_日韩无码高清综合久久

鍍金池/ 問答/Python/ 關(guān)于如何windows10上 64編譯應(yīng)用Qt

關(guān)于如何windows10上 64編譯應(yīng)用Qt

上網(wǎng)找Qt的exe 后面跟MSVC 意思是用VS去 或VC去開發(fā)編譯程序??
我用PYCHARM去開發(fā)Qt怎么弄??
Qt代碼怎么編譯

Windows:

 Open a command prompt.
 Ensure that the following tools can be found in the path:
 * Supported compiler (Visual Studio 2012 or later,
    MinGW-builds gcc 4.9 or later)
 * Perl version 5.12 or later   [http://www.activestate.com/activeperl/]
 * Python version 2.7 or later  [http://www.activestate.com/activepython/]
 * Ruby version 1.9.3 or later  [http://rubyinstaller.org/]

 cd <path>\<source_package>
 configure -prefix %CD%\qtbase <license> -nomake tests
 nmake // jom // mingw32-make

 To accelerate the bootstrap of qmake with MSVC, it may be useful to pass
 "-make-tool jom" on the configure command line. If you do not use jom,
 adding "/MP" to the CL environment variable is a good idea.

More details follow.

Build!

A typical `configure; make' build process is used.

Some relevant configure options (see configure -help):

-release Compile and link Qt with debugging turned off.
-debug Compile and link Qt with debugging turned on.
-nomake tests Disable building of tests to speed up compilation
-nomake examples Disable building of examples to speed up compilation
-confirm-license Automatically acknowledge the LGPL 2.1 license.

Example for a release build:
(adjust the `-jN' parameter as appropriate for your system)

./configure -prefix $PWD/qtbase <license>
make -j4

Example for a developer build:
(enables more autotests, builds debug version of libraries, ...)

./configure -developer-build <license>
make -j4

See output of `./configure -help' for documentation on various options to
configure.

The above examples will build whatever Qt5 modules have been enabled by
default in the build system.

It is possible to build selected modules with their dependencies by doing
a `make module-<foo>'. For example, to build only qtdeclarative,
and the modules it depends on:

./configure -prefix $PWD/qtbase <license>
make -j4 module-qtdeclarative

This can save a lot of time if you are only interested in a subset of Qt5.


網(wǎng)上的教程 看不明白

clipboard.png

回答
編輯回答
編輯回答
大濕胸

用msvc的就行了,有msvc說明是用VC編譯的版本,也就是可執(zhí)行的dll和頭文件。不是C++源代碼不需要你再編譯的。如果你確定要用Python語言開發(fā),去下PyQt5就好了。

2017年3月21日 12:19