mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-28 08:48:48 +02:00
1110dd27d1
First of all SDL2 trying to use dbus and this conflict with Qt. Check mantis#2704. And there no reason to use SDL2 in launcher when Qt can do the same thing as well.
21 lines
446 B
C++
21 lines
446 B
C++
/*
|
|
* main.cpp, part of VCMI engine
|
|
*
|
|
* Authors: listed in file AUTHORS in main folder
|
|
*
|
|
* License: GNU General Public License v2.0 or later
|
|
* Full text of license available in license.txt file, in main folder
|
|
*
|
|
*/
|
|
#include <QApplication>
|
|
#include "StdInc.h"
|
|
#include "mainwindow_moc.h"
|
|
|
|
int main(int argc, char * argv[])
|
|
{
|
|
QApplication vcmilauncher(argc, argv);
|
|
MainWindow mainWindow;
|
|
mainWindow.show();
|
|
return vcmilauncher.exec();
|
|
}
|