forked from qt-creator/qt-creator
Try to find qobject_p.h, if it exists and use its structures to determine the child offset.
22 lines
381 B
INI
22 lines
381 B
INI
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2009-05-05T11:16:25
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT -= gui
|
|
|
|
TARGET = dumpertest
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
|
|
TEMPLATE = app
|
|
|
|
SOURCES += main.cpp \
|
|
../gdbmacros.cpp
|
|
|
|
exists($$QMAKE_INCDIR_QT/QtCore/private/qobject_p.h) {
|
|
DEFINES+=HAS_QOBJECT_P_H
|
|
}
|
|
|