d6d7aebd03
It's confusing when you double-click it and nothing happens. Task-number: QTBUG-26976 Change-Id: I50c5625a41881bdbcbf29001197ed15da4ee0a28 Reviewed-by: Gabriel de Dietrich <gabriel.dietrich-de@nokia.com>
25 lines
514 B
Prolog
25 lines
514 B
Prolog
#############################################
|
|
#
|
|
# Example for using Precompiled Headers
|
|
#
|
|
#############################################
|
|
#! [0]
|
|
TEMPLATE = app
|
|
LANGUAGE = C++
|
|
CONFIG += console precompile_header
|
|
CONFIG -= app_bundle
|
|
|
|
# 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]
|
|
QT += widgets
|