-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
32 lines (26 loc) · 997 Bytes
/
main.cpp
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
//================================================================================
// BACHELOR THESIS - AUGMENTED REALITY FOR DESK GAMES
//================================================================================
/*
* Filename: main.cpp
* Date: 21. 10. 2017
* Subject: IBP - Bachelor Thesis
* Description: Main program file
* Author: Juraj Bačovčin
* (xbacov04@stud.fit.vutbr.cz)
*/
#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QtQml>
#include <QIcon>
int main (int argc, char * argv [])
{
QGuiApplication app (argc, argv);
app.setWindowIcon (QIcon (":/img/icon.ico"));
QQmlApplicationEngine engine;
engine.load (QUrl (QStringLiteral ("qrc:///qml/TitleScreen.qml")));
return app.exec ();
}
//--------------------------------------------------------------------------------
// End of file main.cpp
//--------------------------------------------------------------------------------