forked from qt-creator/qt-creator
Initial revision of the cdbdebugger playground.
This commit is contained in:
11
tests/manual/cdbdebugger/main.cpp
Normal file
11
tests/manual/cdbdebugger/main.cpp
Normal file
@@ -0,0 +1,11 @@
|
||||
#include "mainwindow.h"
|
||||
#include <QApplication>
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
QApplication app(argc, argv);
|
||||
MainWindow mw;
|
||||
if (argc >= 2) mw.setDebuggee(argv[1]);
|
||||
mw.show();
|
||||
return app.exec();
|
||||
}
|
||||
Reference in New Issue
Block a user