34b83656b3
MSVC would occasionally compile the wrong CPP file - the same name, but wrong path.
21 lines
189 B
C++
21 lines
189 B
C++
#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();
|
|
}
|
|
|
|
|
|
|
|
|