-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
33 lines (30 loc) · 896 Bytes
/
main.cpp
File metadata and controls
33 lines (30 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include <QApplication>
#include <QDebug>
#include <QWidget>
#include "screencontroller.h"
#include "game/racing/racing.h"
int main(int argc, char *argv[]) {
QStringList paths = QCoreApplication::libraryPaths();
paths.append(".");
paths.append("platforms");
paths.append("accessible");
paths.append("audio");
paths.append("bearer");
paths.append("designer");
paths.append("iconengines");
paths.append("imageformats");
paths.append("meadiaservice");
paths.append("playlistformats");
paths.append("position");
paths.append("printsupport");
paths.append("qml1tooling");
paths.append("qmltooling");
paths.append("sensorgestures");
paths.append("sensors");
paths.append("sqldrivers");
QCoreApplication::setLibraryPaths(paths);
QApplication a(argc, argv);
ScreenController sc;
sc.show();
return a.exec();
}