]> git.defcon.no Git - rctxduino/blob - tools/jstt/main.cpp
Just added some lines so that it is possible to compile this for Windows too
[rctxduino] / tools / jstt / main.cpp
1 #include <QtGui/QApplication>
2 #include "jstt.h"
3
4 #ifdef SDL_WIN
5 #undef main
6 #endif
7
8 int main(int argc, char *argv[])
9 {
10 QApplication a(argc, argv);
11 jstt w;
12 w.show();
13 return a.exec();
14 }