自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

詳解 Qt Configure 參數不完全說明介紹

移動開發(fā)
本文介紹的是Qt Configure 參數不完全說明介紹,很多參數可以共你參考,先來看內容。

Qt Configure 參數不完全說明介紹是本文要介紹的內容,不多說,先來看內容。在編譯QT前,可加各種參數來定制自己想要的QT庫。這對需要裁減QT庫的朋友來說非常重要。對于如何編譯QT詳解 LINUX下QT FOR ARM開發(fā)環(huán)境搭建過程 這篇文章。

配置參數選項:

前面是*號的表示默認參數. +號表示該功能要求被評估,評估成功后才能被接受.

  1.    -release ........... 調試關閉.沒有調試庫,自己的項目只能發(fā)布,不能調試(沒有調試庫的緣故),如果你硬要編譯debug版本的話,會提示找不到xxxxxd.dll    
  2. *  -debug ............. 只有調試庫,沒有釋放庫,也就是說以后自己的項目只能調試,如果你硬要編譯debug版本的話,會提示找不到xxxxx.dll   
  3. +  -debug-and-release . 編譯后包含兩種庫。最好編譯兩種庫  
  4.    -opensource ........ 編譯開源版.  
  5.    -commercial ........ 編譯商業(yè)版.  這兩個參數一般不需指定,configure開始需要你選擇版本。  
  6.    -developer-build ... 編譯開發(fā)者選項。  
  7. *  -shared ............動態(tài)編譯.  
  8.    -static ............ 靜態(tài)鏈接庫.貌似有插件不能用靜態(tài)編譯。  
  9. *  -no-fast ........... configure生成所有項目makefiles文件,并編譯  
  10.    -fast .............. 只生成庫目錄及子目錄下的項目的makefiles文件.    
  11.    -no-exceptions ..... 關閉異常支持  
  12. *  -exceptions ........ 開啟異常支持.  
  13.    -no-accessibility .. 關閉對windows active控件支持.  
  14. *  -accessibility .....對windows active控件支持.  
  15.    -no-stl ............ 無c++標準庫支持  
  16. *  -stl ............... 有標準庫支持 

尖括號在blogger出問題了。。。。。

  1.    -no-sql- ... Disable SQL entirely, by default none are turned on.  
  2.    -qt-sql- ... Enable a SQL in the Qt Library.  
  3.    -plugin-sql-  Enable SQL as a plugin to be linked to at runtime.  
  4.                         Available values for :  
  5.                           mysql  
  6.                          psql  
  7.                           oci  
  8.                           odbc  
  9.                           tds  
  10.                           db2  
  11. +                         sqlite  
  12.                          sqlite2  
  13.                           ibase  
  14. (drivers marked with a '+' have been detected as available on this system)  
  15.    -system-sqlite ..... Use sqlite from the operating system.  
  16.    -no-qt3support ..... 不提供對qt3函數支持  
  17.    -no-opengl ......... 不提供OpenGL函數支持  
  18.    -platform ... The operating system and compiler you are building on.  
  19.                         (default %QMAKESPEC%)  
  20.    -xplatform .. The operating system and compiler you are cross compiling to.  
  21.                         See the README file for a list of supported operating systems and compilers.  
  22.    -qtnamespace Wraps all Qt library code in 'namespace name {...}  
  23.    -D ........ Add an explicit define to the preprocessor.  
  24.    -I ... Add an explicit include path.  
  25.    -L ... Add an explicit library path.  
  26.    -l ... Add an explicit library name, residing in a librarypath.  
  27.    -graphicssystem Specify which graphicssystem should be used.  
  28.                          Available values for :  
  29. *                         raster - Software rasterizer  
  30.                           opengl - Using OpenGL accelleration, experimental!  
  31.    -help, -h, -? ...... Display this information. 

第三方庫

  1. -qt-zlib ........... 使用zlib綁定到qt. 

 +  -system-zlib ....... 使用操作系統(tǒng)的zlib

                         見 http://www.gzip.org/zlib

  1. -no-gif ............ 不編譯gif文件讀取支持插件 

 +  -qt-gif ............ 編譯gif文件讀取支持插件

                         參見 src/plugins/imageformats/gif/qgifhandler.h

  1. -no-libpng ......... 不編譯PNG支持插件.  
  2. -qt-libpng ......... 編譯PNG支持插件. 

 +  -system-libpng ..... 使用系統(tǒng)libpng庫

                         見 http://www.libpng.org/pub/png

  1. -no-libmng ......... 不編譯MNG支持插件.  
  2. -qt-libmng ......... 編譯MNG支持插件. 

 +  -system-libmng ..... 使用系統(tǒng)的mng庫

                         參見 http://www.libmng.com

  1. -no-libtiff ........ 不編譯tiff支持插件.  
  2. -qt-libtiff ........ 編譯tiff支持插件. 

 +  -system-libtiff .... 使用系統(tǒng)的libtiff庫

                         見 http://www.libtiff.org

  1. -no-libjpeg ........ 不編譯jpeg支持插件庫  
  2. -qt-libjpeg ........ 編譯jpeg支持插件庫 

 +  -system-libjpeg .... 使用系統(tǒng)的jpeg支持庫

                        見 http://www.ijg.org

以下參數僅對qt for windows有效

  1. -no-dsp ............ 不生成 VC++ .dsp 文檔.  
  2. -dsp ...............生成 VC++ .dsp文檔, 需要有平臺標識符"win32-msvc".注意 qt4開始就不支持vc6.0了所以這兩個參數無效。  
  3. -no-vcproj ......... 不生成 VC++ .vcproj 文檔  
  4. -vcproj ............ 生成 VC++ .vcproj 文檔, 需要平臺標識符"win32-msvc.net".也就是vs2003以上的編譯環(huán)境  
  5. -no-incredibuild-xge Do not add IncrediBuild XGE distribution commands to custom build steps.  
  6. -incredibuild-xge .. Add IncrediBuild XGE distribution commands to custom build steps. 
  7. This will distribute MOC and UIC steps, and other custom buildsteps which are added to the INCREDIBUILD_XGE variable. 

(The IncrediBuild distribution commands are only added to Visual Studio projects)

-no-plugin-manifests  插件不嵌入manifests.

  1. *  -plugin-manifests .. 插件嵌入manifests.  
  2.    -no-qmake .......... 不編譯qmake  
  3. *  -qmake ............. 編譯 qmake.   不建議 不編譯qmake  
  4.    -dont-process ...... 不生成makefiles和project文檔. 比 -no-fast 參數優(yōu)先級更高  
  5. *  -process ........... 生成makefiles和project文檔.  
  6.    -no-rtti ........... 不編譯運行時類型信息。  
  7. *  -rtti .............. 編譯運行時類型信息。  
  8. /下面是對指令的支持,不解釋了  
  9.    -no-mmx ............ Do not compile with use of MMX instructions  
  10. +  -mmx ............... Compile with use of MMX instructions  
  11.    -no-3dnow .......... Do not compile 

with use of 3DNOW instructions

  1. +  -3dnow ............. Compile with use of 3DNOW instructions  
  2.    -no-sse ............ Do not compile with use of SSE instructions  
  3. +  -sse ............... Compile with use of SSE instructions  
  4.    -no-sse2 ........... Do not compile with use of SSE2 instructions  
  5. +  -sse2 .............. Compile with use of SSE2 instructions  
  6. +  -direct3d ..........  將Direct3D支持編譯進來。檢測不到direct3d sdk 就不支持  
  7.    -no-openssl ........ Do not compile in OpenSSL support  
  8. +  -openssl ........... Compile in run-time OpenSSL support  
  9.    -openssl-linked .... Compile in linked OpenSSL support  
  10.    -no-dbus ........... Do not compile in D-Bus support  
  11. +  -dbus .............. Compile in D-Bus support and load libdbus-1 dynamically  
  12.    -dbus-linked ....... Compile in D-Bus support and link to libdbus-1  
  13.    -no-phonon ......... 不將 Phonon 模塊 編譯進來  
  14. +  -phonon ............ 將 Phonon 模塊編譯進來  (若使用的規(guī)范的c++編譯器則會自動編譯Phonon模塊)  
  15.    -no-phonon-backend . Do not compile the platform-specific Phonon backend-plu 

gin

  1. *  -phonon-backend .... Compile in the platform-specific Phonon backend-plugin  
  2.    -no-webkit ......... 不將webkit模塊編譯進來,編譯webkit非常耗時間。  
  3. +  -webkit ............ 將webkit模塊編譯進來 (若使用的規(guī)范的c++編譯器則會自動編譯WebKit模塊)  
  4.    -no-scripttools .... Do not build the QtScriptTools module.  
  5. *  -scripttools ....... Build the QtScriptTools module.  
  6.    -arch ....... 外觀樣式. 

有以下幾種 :

  1.  windows  
  2.  windowsce  
  3.   boundschecker
  4.  generic  

-no-style-尖括號里包含上面的樣式。

小結:關于Qt Configure 參數不完全說明介紹的內容介紹完了,希望本文對你有所幫助!

責任編輯:zhaolei 來源: 互聯(lián)網
相關推薦

2015-09-01 10:42:15

編程規(guī)范完全指南

2015-10-10 10:02:44

程序員面試指南

2014-09-19 10:03:18

Chrome

2021-06-01 06:03:28

Css前端CSS 特效

2024-01-02 16:43:58

2017-04-13 08:46:41

oracle數據挖掘

2024-01-12 10:16:53

2021-05-06 07:26:55

CSS 文字動畫技巧

2021-02-09 00:46:45

區(qū)塊鏈加密貨幣工具

2019-04-12 15:00:11

2021-08-18 10:28:09

MySQL SQL 語句數據庫

2017-04-19 20:10:20

SQLJOIN

2019-07-04 08:47:57

JavaScript瀏覽器技術

2019-08-18 22:45:22

編程Rust語言

2024-04-22 08:49:29

CIO人工智能云計算

2019-08-19 16:01:59

Rust編程語言JavaScript

2011-12-28 13:28:05

云計算服務器

2011-05-12 10:49:39

2011-08-30 09:50:22

OracleRMAN不完全恢復基于SCN恢復

2011-08-30 09:35:10

OracleRMAN不完全恢復基于時間恢復
點贊
收藏

51CTO技術棧公眾號