Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
f63f18b8
Commit
f63f18b8
authored
May 19, 2009
by
hjk
Browse files
debugger: put gdb related stuff into directory of its own
parent
00875795
Changes
12
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/debugger.pro
View file @
f63f18b8
...
...
@@ -27,8 +27,6 @@ HEADERS += \
disassemblerhandler
.
h
\
disassemblerwindow
.
h
\
watchutils
.
h
\
gdbengine
.
h
\
gdbmi
.
h
\
idebuggerengine
.
h
\
imports
.
h
\
moduleshandler
.
h
\
...
...
@@ -45,7 +43,6 @@ HEADERS += \
threadswindow
.
h
\
watchhandler
.
h
\
watchwindow
.
h
\
gdboptionspage
.
h
SOURCES
+=
\
breakhandler
.
cpp
\
...
...
@@ -60,8 +57,6 @@ SOURCES += \
disassemblerhandler
.
cpp
\
disassemblerwindow
.
cpp
\
watchutils
.
cpp
\
gdbengine
.
cpp
\
gdbmi
.
cpp
\
moduleshandler
.
cpp
\
moduleswindow
.
cpp
\
outputcollector
.
cpp
\
...
...
@@ -76,7 +71,6 @@ SOURCES += \
tcfengine
.
cpp
\
watchhandler
.
cpp
\
watchwindow
.
cpp
\
gdboptionspage
.
cpp
FORMS
+=
attachexternaldialog
.
ui
\
attachcoredialog
.
ui
\
...
...
@@ -84,7 +78,6 @@ FORMS += attachexternaldialog.ui \
breakbyfunction
.
ui
\
breakcondition
.
ui
\
dumperoptionpage
.
ui
\
gdboptionspage
.
ui
\
commonoptionspage
.
ui
\
startexternaldialog
.
ui
\
startremotedialog
.
ui
\
...
...
@@ -97,6 +90,8 @@ HEADERS += $$PWD/modeltest.h
DEFINES
+=
USE_MODEL_TEST
=
1
}
include
(
gdb
/
gdb
.
pri
)
win32
{
include
(
win
/
win
.
pri
)
include
(
cdb
/
cdb
.
pri
)
...
...
src/plugins/debugger/debugger.qrc
View file @
f63f18b8
<RCC>
<qresource prefix="/gdbdebugger" >
<file>gdbmacros.txt</file>
<file>images/breakpoint.svg</file>
<file>images/breakpoint_pending.svg</file>
<file>images/breakpoint_disabled.svg</file>
...
...
src/plugins/debugger/debuggerplugin.cpp
View file @
f63f18b8
...
...
@@ -34,7 +34,6 @@
#include "debuggerconstants.h"
#include "debuggermanager.h"
#include "debuggerrunner.h"
#include "gdbengine.h"
#include "ui_commonoptionspage.h"
#include "ui_dumperoptionpage.h"
...
...
src/plugins/debugger/gdb/gdb.qrc
0 → 100644
View file @
f63f18b8
<RCC>
<qresource prefix="/gdb" >
<file>gdbmacros.txt</file>
</qresource>
</RCC>
src/plugins/debugger/gdbengine.cpp
→
src/plugins/debugger/
gdb/
gdbengine.cpp
View file @
f63f18b8
...
...
@@ -3877,7 +3877,7 @@ void GdbEngine::tryLoadDebuggingHelpers()
return
;
if
(
!
startModeAllowsDumpers
())
{
// load gdb macro based dumpers at least
QFile
file
(
_
(
":/gdb
debugger
/gdbmacros.txt"
));
QFile
file
(
_
(
":/gdb/gdbmacros.txt"
));
file
.
open
(
QIODevice
::
ReadOnly
);
QByteArray
contents
=
file
.
readAll
();
//qDebug() << "CONTENTS: " << contents;
...
...
src/plugins/debugger/gdbengine.h
→
src/plugins/debugger/
gdb/
gdbengine.h
View file @
f63f18b8
File moved
src/plugins/debugger/gdbmacros.txt
→
src/plugins/debugger/
gdb/
gdbmacros.txt
View file @
f63f18b8
File moved
src/plugins/debugger/gdbmi.cpp
→
src/plugins/debugger/
gdb/
gdbmi.cpp
View file @
f63f18b8
File moved
src/plugins/debugger/gdbmi.h
→
src/plugins/debugger/
gdb/
gdbmi.h
View file @
f63f18b8
File moved
src/plugins/debugger/gdboptionspage.cpp
→
src/plugins/debugger/
gdb/
gdboptionspage.cpp
View file @
f63f18b8
File moved
src/plugins/debugger/gdboptionspage.h
→
src/plugins/debugger/
gdb/
gdboptionspage.h
View file @
f63f18b8
File moved
src/plugins/debugger/gdboptionspage.ui
→
src/plugins/debugger/
gdb/
gdboptionspage.ui
View file @
f63f18b8
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment