1
0

QtBiomeVisualiser: Fixed MSVC path-crossing.

MSVC would occasionally compile the wrong CPP file - the same name, but wrong path.
This commit is contained in:
madmaxoft
2014-09-24 11:21:59 +02:00
parent 8d9dfc5d1a
commit 34b83656b3
7 changed files with 15 additions and 10 deletions

View File

@@ -0,0 +1,20 @@
#include "Globals.h"
#include "MainWindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}