1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-06 10:39:53 +02:00

Fix ci compile error

This commit is contained in:
Elias Steurer 2020-08-10 21:09:45 +02:00
parent 0b31d2b31a
commit 88fe5b6f0f

View File

@ -13,10 +13,13 @@ int main(int argc, char* argv[])
QStringList argumentList = app.arguments();
// If we start with only one argument (path, appID, type),
// it means we want to test a single widget
if (argumentList.length() == 1) {
WidgetWindow spwmw("test", { 0, 0 }, "appid", "qmlWidget");
// WidgetWindow spwmw("test", { 0, 0 }, "appid", "qmlWidget");
//WidgetWindow spwmw("C:\\Program Files (x86)\\Steam\\steamapps\\workshop\\content\\672870\\2136442401", "appid", "qmlWidget", { 0, 0 });
WidgetWindow spwmw("C:/Program Files (x86)/Steam/steamapps/workshop/content/672870/2136442401", "appid", "qmlWidget", { 0, 0 });
return app.exec();
}