winpty/Console/main.cc
Ryan Prichard 22b4de90b8 Checkpoint a reimplementation that uses Qt extensively.
- Use QMake instead of CMake.

 - Use QLocalSocket/QLocalServer to access Win32 named pipes.
2011-10-31 02:19:18 -07:00

11 lines
177 B
C++

#include <QApplication>
#include "ConsoleWindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
ConsoleWindow w;
w.show();
return a.exec();
}