Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
d9bc54ed
Commit
d9bc54ed
authored
Feb 20, 2009
by
Friedemann Kleint
Committed by
Friedemann Kleint
Feb 20, 2009
Browse files
Moved CDB support into separate directory and enable via config switch
parent
158285e5
Changes
8
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/cdb/cdb.pri
0 → 100644
View file @
d9bc54ed
win32 {
# ---- Detect Debugging Tools For Windows
CDB_PATH="$$(ProgramFiles)/Debugging Tools For Windows/sdk"
exists ($$CDB_PATH) {
message("Experimental: Adding support for $$CDB_PATH")
DEFINES+=CDB_ENABLED
CDB_PLATFORM=i386
INCLUDEPATH*=$$CDB_PATH
INCLUDEPATH*=$$PWD
CDB_LIBPATH=$$CDB_PATH/lib/$$CDB_PLATFORM
HEADERS += \
$$PWD/cdbdebugengine.h \
$$PWD/cdbdebugeventcallback.h \
$$PWD/cdbdebugoutput.h
SOURCES += \
$$PWD/cdbdebugengine.cpp \
$$PWD/cdbdebugeventcallback.cpp \
$$PWD/cdbdebugoutput.cpp
LIBS += -L$$CDB_LIBPATH Dbghelp.lib dbgeng.lib
} else {
error("Debugging Tools for Windows could not be found in $$CDB_PATH")
}
}
src/plugins/debugger/cdbdebugengine.cpp
→
src/plugins/debugger/
cdb/
cdbdebugengine.cpp
View file @
d9bc54ed
File moved
src/plugins/debugger/cdbdebugengine.h
→
src/plugins/debugger/
cdb/
cdbdebugengine.h
View file @
d9bc54ed
File moved
src/plugins/debugger/cdbdebugeventcallback.cpp
→
src/plugins/debugger/
cdb/
cdbdebugeventcallback.cpp
View file @
d9bc54ed
File moved
src/plugins/debugger/cdbdebugeventcallback.h
→
src/plugins/debugger/
cdb/
cdbdebugeventcallback.h
View file @
d9bc54ed
File moved
src/plugins/debugger/cdbdebugoutput.cpp
→
src/plugins/debugger/
cdb/
cdbdebugoutput.cpp
View file @
d9bc54ed
File moved
src/plugins/debugger/cdbdebugoutput.h
→
src/plugins/debugger/
cdb/
cdbdebugoutput.h
View file @
d9bc54ed
File moved
src/plugins/debugger/debugger.pro
View file @
d9bc54ed
...
...
@@ -85,32 +85,4 @@ HEADERS += $$PWD/modeltest.h
DEFINES
+=
USE_MODEL_TEST
=
1
}
win32
{
#
----
Detect
Debugging
Tools
For
Windows
CDB_PATH
=
"$$(ProgramFiles)/Debugging Tools For Windows/sdk"
exists
(
$$
CDB_PATH
)
{
message
(
"Experimental: Adding support for $$CDB_PATH"
)
DEFINES
+=
CDB_ENABLED
CDB_PLATFORM
=
i386
INCLUDEPATH
+=
$$
CDB_PATH
CDB_LIBPATH
=
$$
CDB_PATH
/
lib
/
$$
CDB_PLATFORM
HEADERS
+=
\
cdbdebugengine
.
h
\
cdbdebugeventcallback
.
h
\
cdbdebugoutput
.
h
SOURCES
+=
\
cdbdebugengine
.
cpp
\
cdbdebugeventcallback
.
cpp
\
cdbdebugoutput
.
cpp
LIBS
+=
-
L
$$
CDB_LIBPATH
Dbghelp
.
lib
dbgeng
.
lib
}
}
CONFIG
(
cdbdebugger
)
:
include
(
cdb
\
cdb
.
pri
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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