Files
qt-creator/share/qtcreator/gdbmacros/gdbmacros.pro
ck 2721eb2371 Debugger: Added auto test to stay in sync with QObjectPrivate.
The compile-time solution introduced by 3a084ae8a2
was felt by some to be too intrusive, so I've integrated the check for
changes to QObjectPrivate into the auto test.
2009-08-04 15:38:31 +02:00

19 lines
335 B
Prolog

TEMPLATE = lib
CONFIG += shared
linux-* {
CONFIG -= release
CONFIG += debug
}
SOURCES = gdbmacros.cpp
false {
DEFINES += USE_QT_GUI=0
QT = core
}
else {
DEFINES += USE_QT_GUI=1
QT = core \
gui
}
exists($$QMAKE_INCDIR_QT/QtCore/private/qobject_p.h):DEFINES += HAS_QOBJECT_P_H
HEADERS += gdbmacros_p.h