diff -r 000000000000 -r 1918ee327afb examples/qmake/precompile/precompile.pro --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/examples/qmake/precompile/precompile.pro Mon Jan 11 14:00:40 2010 +0000 @@ -0,0 +1,22 @@ +############################################# +# +# Example for using Precompiled Headers +# +############################################# +#! [0] +TEMPLATE = app +LANGUAGE = C++ +CONFIG += console precompile_header + +# Use Precompiled headers (PCH) +PRECOMPILED_HEADER = stable.h + +HEADERS = stable.h \ + mydialog.h \ + myobject.h +SOURCES = main.cpp \ + mydialog.cpp \ + myobject.cpp \ + util.cpp +FORMS = mydialog.ui +#! [0]