~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to qmake/examples/precompile/precompile.pro

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-08-24 04:09:09 UTC
  • Revision ID: james.westby@ubuntu.com-20050824040909-xmxe9jfr4a0w5671
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#############################################
 
2
#
 
3
# Example for using Precompiled Headers
 
4
#
 
5
#############################################
 
6
TEMPLATE  = app
 
7
LANGUAGE  = C++
 
8
CONFIG   += console precompile_header
 
9
 
 
10
# Use Precompiled headers (PCH)
 
11
PRECOMPILED_HEADER  = stable.h
 
12
 
 
13
HEADERS  += stable.h \
 
14
            myobject.h
 
15
SOURCES  += main.cpp \
 
16
            myobject.cpp \
 
17
            util.cpp
 
18
FORMS     = mydialog.ui
 
19