diff options
author | Petar Perisin <petar.perisin@gmail.com> | 2013-09-20 16:48:01 +0200 |
---|---|---|
committer | hjk <hjk121@nokiamail.com> | 2014-02-12 11:20:23 +0100 |
commit | 183822427757acc8985bbc7a018656805f838432 (patch) | |
tree | 8815d5b8f9ddae35a234176fa81c80bfc6541cb4 /src/plugins/debugger/debugger.pro | |
parent | 8d319ce8993fa767c58e8d92da78a3d5c58d8f45 (diff) | |
download | qt-creator-183822427757acc8985bbc7a018656805f838432.tar.gz |
Attach to unstarted Application
This patch adds a dialog that can be useful in situations where you have
a script-based test tool, that starts executable and executes test on
it.
This dialog allows user to specify executable and to begin watching
process, where dialog simply waits for executable to be started. As soon
as executable is found, QtCreator will attach to it.
also, since script-based test can constantly start-stop executable. as
soon as it is detected that executable is down, another waiting process
starts where dialog waits for executable to come up again.
Change-Id: I3bd62f656d34f8dff5641f6747ec12d97cbae2a4
Reviewed-by: hjk <hjk121@nokiamail.com>
Diffstat (limited to 'src/plugins/debugger/debugger.pro')
-rw-r--r-- | src/plugins/debugger/debugger.pro | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/plugins/debugger/debugger.pro b/src/plugins/debugger/debugger.pro index 03b260c6bc..580a4948b0 100644 --- a/src/plugins/debugger/debugger.pro +++ b/src/plugins/debugger/debugger.pro @@ -73,7 +73,8 @@ HEADERS += \ memoryview.h \ localsandexpressionswindow.h \ imageviewer.h \ - simplifytype.h + simplifytype.h \ + unstartedappwatcherdialog.h SOURCES += \ basewindow.cpp \ @@ -129,7 +130,8 @@ SOURCES += \ memoryview.cpp \ localsandexpressionswindow.cpp \ imageviewer.cpp \ - simplifytype.cpp + simplifytype.cpp \ + unstartedappwatcherdialog.cpp FORMS += \ localsandexpressionsoptionspage.ui |