mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
31 lines
744 B
C++
31 lines
744 B
C++
#include "src/mainwindow.h"
|
|
#include <QApplication>
|
|
#include <QStringList>
|
|
#include "qt_windows.h"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
//QCoreApplication::addLibraryPath("C:/msys64/mingw64/bin");
|
|
//SetDllDirectory((LPCWSTR)L"C:\\msys64\\mingw64\\bin");
|
|
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
|
QApplication::setAttribute(Qt::AA_UseOpenGLES);
|
|
QApplication a(argc, argv);
|
|
|
|
QStringList argumentList = a.arguments();
|
|
|
|
if(argumentList.length() != 3) {
|
|
return -3;
|
|
}
|
|
|
|
bool ok = false;
|
|
int monitor = argumentList.at(1).toInt(&ok);
|
|
|
|
if (!ok) {
|
|
return -4;
|
|
}
|
|
|
|
MainWindow w(monitor,argumentList.at(2));
|
|
//MainWindow w(0,"D:/672870/827148653");
|
|
return a.exec();
|
|
}
|