author | William Roberts <williamr@symbian.org> |
Mon, 21 Jun 2010 22:38:13 +0100 | |
branch | GCC_SURGE |
changeset 27 | 93b982ccede2 |
parent 0 | 1918ee327afb |
permissions | -rw-r--r-- |
############################################# # # 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]