cmake: Link resources statically, and init locally
[quassel.git] / src / main / main.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include <cstdlib>
22 #include <memory>
23
24 #ifdef HAVE_UMASK
25 #  include <sys/types.h>
26 #  include <sys/stat.h>
27 #endif /* HAVE_UMASK */
28
29 #include <QCoreApplication>
30 #include <QTextCodec>
31
32 #ifdef BUILD_CORE
33 #  include "coreapplication.h"
34 #elif defined BUILD_QTUI
35 #  include "aboutdata.h"
36 #  include "qtuiapplication.h"
37 #elif defined BUILD_MONO
38 #  include "aboutdata.h"
39 #  include "monoapplication.h"
40
41 #else
42 #error "Something is wrong - you need to #define a build mode!"
43 #endif
44
45 // We don't want quasselcore to depend on KDE
46 #if defined HAVE_KF5 && defined BUILD_CORE
47 #  undef HAVE_KF5
48 #endif
49
50 #if defined HAVE_KF5
51 #  include <KCoreAddons/KAboutData>
52 #  include <KCoreAddons/Kdelibs4ConfigMigrator>
53 #endif
54
55 #include "quassel.h"
56 #include "types.h"
57
58 int main(int argc, char **argv)
59 {
60     // Set umask so files are created with restricted permissions
61 #ifdef HAVE_UMASK
62     umask(S_IRWXG | S_IRWXO);
63 #endif
64
65     // Instantiate early, so log messages are handled
66     Quassel quassel;
67
68     Quassel::setupBuildInfo();
69     QCoreApplication::setApplicationName(Quassel::buildInfo().applicationName);
70     QCoreApplication::setApplicationVersion(Quassel::buildInfo().plainVersionString);
71     QCoreApplication::setOrganizationName(Quassel::buildInfo().organizationName);
72     QCoreApplication::setOrganizationDomain(Quassel::buildInfo().organizationDomain);
73
74     // Migrate settings from KDE4 to KF5 if appropriate
75 #ifdef HAVE_KF5
76     Kdelibs4ConfigMigrator migrator(QCoreApplication::applicationName());
77     migrator.setConfigFiles(QStringList() << "quasselrc" << "quassel.notifyrc");
78     migrator.migrate();
79 #endif
80
81     //Setup the High-DPI settings
82 # if QT_VERSION >= 0x050600 && defined(Q_OS_WIN)
83     QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling); //Added in Qt 5.6
84 #endif
85     QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
86
87     // Instantiate application
88 #if defined BUILD_CORE
89     CoreApplication app(argc, argv);
90     const auto runMode = Quassel::RunMode::CoreOnly;
91 #elif defined BUILD_QTUI
92     QtUiApplication app(argc, argv);
93     const auto runMode = Quassel::RunMode::ClientOnly;
94 #elif defined BUILD_MONO
95     MonolithicApplication app(argc, argv);
96     const auto runMode = Quassel::RunMode::Monolithic;
97 #endif
98
99     try {
100         Quassel::instance()->init(runMode);
101
102 #ifdef HAVE_KF5
103         AboutData aboutData;
104         AboutData::setQuasselPersons(&aboutData);
105         KAboutData::setApplicationData(aboutData.kAboutData());
106 #endif
107
108         // Initialize the application
109         app.init();
110     }
111     catch (ExitException e) {
112         if (!e.errorString.isEmpty()) {
113             qCritical() << e.errorString;
114         }
115         return e.exitCode;
116     }
117
118     return app.exec();
119 }