1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-03 09:09:48 +02:00
ScreenPlay/ScreenPlayWindow/main.cpp

19 lines
433 B
C++
Raw Normal View History

#include "src/mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
//QCoreApplication::addLibraryPath("C:/msys64/mingw64/bin");
QApplication a(argc, argv);
2018-02-14 10:21:15 +01:00
QStringList argumentList = a.arguments();
//MainWindow w(argumentList.at(0));
//MainWindow w(0,"D:/672870/860170953");
//MainWindow w1(1,"D:/672870/818696361");
MainWindow w2(2,"D:/672870/860170953");
return a.exec();
}