forked from qt-creator/qt-creator
Introduce conditionals in the profiles and source code to be able to test Qt 4 and Qt 5. Change-Id: I73df5558f2945742d3e56f94baca0ee4d5f9dab8 Reviewed-on: http://codereview.qt-project.org/6330 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: hjk <qthjk@ovi.com>
20 lines
407 B
INI
20 lines
407 B
INI
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2009-05-05T11:16:25
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
TARGET = dumpertest
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
greaterThan(QT_MAJOR_VERSION, 4):QT *= widgets
|
|
TEMPLATE = app
|
|
|
|
SOURCES += main.cpp \
|
|
../dumper.cpp
|
|
|
|
exists($$QMAKE_INCDIR_QT/QtCore/private/qobject_p.h) {
|
|
DEFINES+=HAS_QOBJECT_P_H
|
|
}
|
|
|