examples/qmake/precompile/precompile.pro
changeset 0 1918ee327afb
equal deleted inserted replaced
-1:000000000000 0:1918ee327afb
       
     1 #############################################
       
     2 #
       
     3 # Example for using Precompiled Headers
       
     4 #
       
     5 #############################################
       
     6 #! [0]
       
     7 TEMPLATE  = app
       
     8 LANGUAGE  = C++
       
     9 CONFIG	 += console precompile_header
       
    10 
       
    11 # Use Precompiled headers (PCH)
       
    12 PRECOMPILED_HEADER  = stable.h
       
    13 
       
    14 HEADERS	  = stable.h \
       
    15             mydialog.h \
       
    16             myobject.h
       
    17 SOURCES	  = main.cpp \
       
    18             mydialog.cpp \
       
    19             myobject.cpp \
       
    20             util.cpp
       
    21 FORMS     = mydialog.ui
       
    22 #! [0]