Files
qt-creator/src/plugins/debugger/debugger.pro

159 lines
3.6 KiB
Prolog
Raw Normal View History

2009-08-25 12:11:04 +02:00
# DEFINES += QT_USE_FAST_OPERATOR_PLUS
# DEFINES += QT_USE_FAST_CONCATENATION
2008-12-02 12:01:29 +01:00
# CONFIG += single
include(../../qtcreatorplugin.pri)
DEFINES += DEBUGGER_LIBRARY
2009-08-25 12:11:04 +02:00
QT += gui \
network
CONFIG += exceptions
HEADERS += \
breakhandler.h \
breakpoint.h \
breakwindow.h \
commonoptionspage.h \
debugger_global.h \
debuggeractions.h \
debuggercore.h \
2008-12-02 12:01:29 +01:00
debuggerconstants.h \
2011-04-21 15:52:51 +02:00
debuggerinternalconstants.h \
debuggeritem.h \
debuggeritemmanager.h \
debuggerdialogs.h \
debuggerengine.h \
debuggermainwindow.h \
debuggeroptionspage.h \
2008-12-02 12:01:29 +01:00
debuggerplugin.h \
debuggerprotocol.h \
debuggerrunconfigurationaspect.h \
debuggerruncontrol.h \
debuggerstartparameters.h \
debuggerstringutils.h \
debuggerkitconfigwidget.h \
debuggerkitinformation.h \
disassembleragent.h \
2010-11-24 16:57:40 +01:00
disassemblerlines.h \
loadcoredialog.h \
logwindow.h \
memoryagent.h \
2008-12-02 12:01:29 +01:00
moduleshandler.h \
moduleswindow.h \
outputcollector.h \
2008-12-02 12:01:29 +01:00
procinterrupt.h \
registerhandler.h \
registerwindow.h \
snapshothandler.h \
snapshotwindow.h \
sourceagent.h \
sourcefileshandler.h \
sourcefileswindow.h \
sourceutils.h \
stackframe.h \
stackhandler.h \
stackwindow.h \
terminal.h \
2008-12-02 12:01:29 +01:00
threadswindow.h \
watchhandler.h \
watchutils.h \
watchwindow.h \
2010-10-15 10:56:39 +02:00
threaddata.h \
threadshandler.h \
watchdelegatewidgets.h \
debuggertooltipmanager.h \
debuggersourcepathmappingwidget.h \
memoryview.h \
localsandexpressionswindow.h \
imageviewer.h \
simplifytype.h \
unstartedappwatcherdialog.h \
debuggericons.h
SOURCES += \
breakhandler.cpp \
breakpoint.cpp \
breakwindow.cpp \
commonoptionspage.cpp \
debuggeractions.cpp \
debuggerdialogs.cpp \
debuggerengine.cpp \
debuggeritem.cpp \
debuggeritemmanager.cpp \
debuggermainwindow.cpp \
2008-12-02 12:01:29 +01:00
debuggerplugin.cpp \
debuggerprotocol.cpp \
debuggerrunconfigurationaspect.cpp \
debuggerruncontrol.cpp \
debuggeroptionspage.cpp \
debuggerkitconfigwidget.cpp \
debuggerkitinformation.cpp \
disassembleragent.cpp \
2010-11-24 16:57:40 +01:00
disassemblerlines.cpp \
loadcoredialog.cpp \
logwindow.cpp \
memoryagent.cpp \
2008-12-02 12:01:29 +01:00
moduleshandler.cpp \
moduleswindow.cpp \
outputcollector.cpp \
2008-12-02 12:01:29 +01:00
procinterrupt.cpp \
registerhandler.cpp \
registerwindow.cpp \
snapshothandler.cpp \
snapshotwindow.cpp \
sourceagent.cpp \
sourcefileshandler.cpp \
sourcefileswindow.cpp \
sourceutils.cpp \
stackhandler.cpp \
stackwindow.cpp \
threadshandler.cpp \
2008-12-02 12:01:29 +01:00
threadswindow.cpp \
terminal.cpp \
watchdata.cpp \
2008-12-02 12:01:29 +01:00
watchhandler.cpp \
watchutils.cpp \
watchwindow.cpp \
stackframe.cpp \
watchdelegatewidgets.cpp \
debuggertooltipmanager.cpp \
debuggersourcepathmappingwidget.cpp \
memoryview.cpp \
localsandexpressionswindow.cpp \
imageviewer.cpp \
simplifytype.cpp \
unstartedappwatcherdialog.cpp
2008-12-02 12:01:29 +01:00
RESOURCES += debugger.qrc
false {
include(../../shared/modeltest/modeltest.pri)
#DEFINES += USE_WATCH_MODEL_TEST=1
#DEFINES += USE_BREAK_MODEL_TEST=1
#DEFINES += USE_REGISTER_MODEL_TEST=1
2008-12-02 12:01:29 +01:00
}
win32 {
include(../../shared/registryaccess/registryaccess.pri)
HEADERS += registerpostmortemaction.h
SOURCES += registerpostmortemaction.cpp
LIBS *= -lole32 \
-lshell32
}
equals(TEST, 1) {
RESOURCES += debuggerunittests.qrc
}
include(cdb/cdb.pri)
include(gdb/gdb.pri)
2010-04-27 08:52:17 +02:00
include(pdb/pdb.pri)
include(lldb/lldb.pri)
include(qml/qml.pri)
include(namedemangler/namedemangler.pri)
include(console/console.pri)
include(analyzer/analyzer.pri)
include(shared/shared.pri)