Command-line-only examples should not build as .app bundles on OSX
[profile/ivi/qtbase.git] / examples / qmake / precompile / precompile.pro
1 #############################################
2 #
3 # Example for using Precompiled Headers
4 #
5 #############################################
6 #! [0]
7 TEMPLATE  = app
8 LANGUAGE  = C++
9 CONFIG   += console precompile_header
10 CONFIG   -= app_bundle
11
12 # Use Precompiled headers (PCH)
13 PRECOMPILED_HEADER  = stable.h
14
15 HEADERS   = stable.h \
16             mydialog.h \
17             myobject.h
18 SOURCES   = main.cpp \
19             mydialog.cpp \
20             myobject.cpp \
21             util.cpp
22 FORMS     = mydialog.ui
23 #! [0]
24 QT += widgets