mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
13 lines
228 B
C++
13 lines
228 B
C++
#include "src/mainwindow.h"
|
|
#include <QApplication>
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
//QCoreApplication::addLibraryPath("C:/msys64/mingw64/bin");
|
|
QApplication a(argc, argv);
|
|
|
|
MainWindow w;
|
|
return a.exec();
|
|
}
|