2017-01-17 12:17:37 +01:00
|
|
|
#include <QApplication>
|
2013-08-22 17:47:49 +00:00
|
|
|
#include "StdInc.h"
|
2013-08-24 20:11:51 +00:00
|
|
|
#include "mainwindow_moc.h"
|
2016-08-30 20:54:37 +02:00
|
|
|
#include "sdldisplayquery.h"
|
2013-08-22 14:22:49 +00:00
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
|
{
|
2017-01-17 12:17:37 +01:00
|
|
|
QApplication vcmilauncher(argc, argv);
|
2016-08-30 20:54:37 +02:00
|
|
|
auto displayList = getDisplays();
|
2017-01-17 12:17:37 +01:00
|
|
|
MainWindow mainWindow(displayList);
|
|
|
|
|
mainWindow.show();
|
|
|
|
|
return vcmilauncher.exec();
|
2013-08-22 14:22:49 +00:00
|
|
|
}
|