QT下載地址中的工具介紹

下載地址:https://download.qt.io/official_releases/

  • qt-installer-framework:打包程序,用於發佈安裝包
  • qtcreator:qt自帶IDE
  • qt3dstudio:Qt 3D Studio is a compositing tool where you import 3D models, images and other assets to create interactive presentations, UIs and applications.
  • qtchooser:選擇默認的qt環境,當系統存在多個qt環境的時候有用
  • qtdesignstudio:Qt Design Studio is a UI design and development environment for creating animated UIs and previewing them on the desktop or on Android and embedded Linux devices. It provides you with tools for accomplishing your tasks throughout the whole process, from design to production.
  • vsaddin:qt-vs插件
  • qbs:Qbs是一個跨平臺的免費開源軟件,用於管理軟件的構建過程。它旨在支持使用多種編程語言(主要是C / C ++)編寫的大型複雜項目。Qbs是一個多功能工具,可以根據高級項目描述生成構建圖,還承擔執行低級構建圖中的命令的任務。
  • pyside:PySide是跨平臺的應用程序框架Qt的Python綁定版本。 在2009年8月,PySide首次發佈。提供和PyQt類似的功能,並相容API。但與PyQt不同處爲使用LGPL授權。
  • jom:用過linux都知道,很多時候,編譯代碼要手動去執行make指令,它會根據makefile進行編譯.一般make可以加一個參數-j 表示使用多少個線程來編譯,-j4就表示使用4個線程編譯.linux下使用make,而在windows上面使用nmake,是vs提供的一個東西,但是有很個坑的事,就是nmake不支持-j這個參數,也是就是說它是單線程編譯.Qt爲了解決這樣子的一個問題,弄出一個jom.exe,這和make的功能基本是一樣的,但是他比nmake多出來的就是,-j這個參數.也就是說它支持多線程編譯.至於和make的其他區別我也不清楚,如果你不特別追究的話,簡單理解爲 jommakenmake*x
  • gdb:不多說,調試工具
  • QtForPython:Qt for Python offers the official Python bindings for Qt (PySide2), so that you can use Qt5 APIs in your Python applications, and a binding generator tool (Shiboken2) which can be used to expose C++ projects into Python.Qt for Python is available under the LGPLv3/GPLv3 and the Qt commercial license.
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章