1. 程式人生 > >linux高階程式設計day13 筆記 (轉)

linux高階程式設計day13 筆記 (轉)

注意:  
 1.QT是C++程式.  
 2.QT程式要啟動QT的環境QApplication
 3.程式設計的模型
   qmake -project
   qmake *.pro
   make
   執行
4.*.pro檔案
  TEMPLATE=
    :app 應用程式
    :lib 庫
  SOURCES=
    :cpp檔案1 cpp檔案2 cpp檔案3 ....
    :\ 續行符號
    :SOURCES+=
  HEADERS=
    :h標頭檔案
  CONFIG=   影響gcc的選項
    :release | debug
    :warn_on | warn_off   -Wall -w
    :qt | opengl  
    :shared  | static 
  QT=  (該變數在CONFIG=qt才有意義)
    :core 
    :gui
    :network 
    :opengl
    :svg
    :xml
    :sql
  TARGET=    
    :輸出檔名 (-o輸出檔案)
  LIBS=使用者指定庫
    :-l  -L
  FORMS=ui檔案
小例子: