101eedcb7f4258867af4d1ee104a409aef32604e
[staging/HomeScreen.git] / HomeScreenSimulator / src / main.cpp
1 /*
2  * Copyright (C) 2016 Mentor Graphics Development (Deutschland) GmbH
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "mainwindow.h"
18 #include <QApplication>
19 #include <QSysInfo>
20 #include <QSharedMemory>
21
22 int main(int argc, char *argv[])
23 {
24     // allow only one instance of this application
25     /*QSharedMemory appInstance;
26     appInstance.setKey("AGLHomeScreenApp");
27     if (!appInstance.create(1))
28     {
29         qDebug("Only one instance of the Home Screen App allowed!");
30         exit(-1);
31     }*/
32
33     QApplication a(argc, argv);
34
35     // used for application settings (QSettings)
36     QCoreApplication::setOrganizationDomain("LinuxFoundation");
37     QCoreApplication::setOrganizationName("AutomotiveGradeLinux");
38     QCoreApplication::setApplicationName("HomeScreenSimulator");
39     QCoreApplication::setApplicationVersion("0.4.0");
40
41     qDebug("%s, v%s", QCoreApplication::applicationName().toStdString().c_str(), QCoreApplication::applicationVersion().toStdString().c_str());
42
43     MainWindow w;
44     w.show();
45
46 #ifdef __arm__
47     qDebug("Running on ARM architecture");
48 #endif
49 #ifdef __i386__
50     qDebug("Running on x86 architecture");
51 #endif
52
53     return a.exec();
54 }