2 * Copyright (C) 2016, 2017 Mentor Graphics Development (Deutschland) GmbH
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 #include "mainwindow.h"
18 #include <QApplication>
20 #include <QSharedMemory>
22 int main(int argc, char *argv[])
24 // allow only one instance of this application
25 /*QSharedMemory appInstance;
26 appInstance.setKey("AGLHomeScreenApp");
27 if (!appInstance.create(1))
29 qDebug("Only one instance of the Home Screen App allowed!");
33 QApplication a(argc, argv);
35 // used for application settings (QSettings)
36 QCoreApplication::setOrganizationDomain("LinuxFoundation");
37 QCoreApplication::setOrganizationName("AutomotiveGradeLinux");
38 QCoreApplication::setApplicationName("HomeScreenSimulator");
39 QCoreApplication::setApplicationVersion("0.4.0");
41 qDebug("%s, v%s", QCoreApplication::applicationName().toStdString().c_str(), QCoreApplication::applicationVersion().toStdString().c_str());
47 qDebug("Running on ARM architecture");
50 qDebug("Running on x86 architecture");