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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
/*
* LibrePCB - Professional EDA for everyone!
* Copyright (C) 2013 LibrePCB Developers, see AUTHORS.md for contributors.
* https://librepcb.org/
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*******************************************************************************
* Includes
******************************************************************************/
#include "./commandlineinterface.h"
#include <librepcb/core/application.h>
#include <librepcb/core/debug.h>
#include <QtCore>
#include <QtGui>
/*******************************************************************************
* Namespace
******************************************************************************/
using namespace librepcb;
/*******************************************************************************
* main()
******************************************************************************/
int main(int argc, char* argv[]) {
// Creates the Debug object which installs the message handler. This must be
// done as early as possible.
Debug::instance();
// Silence logging output, it's a command line tool where logging messages
// could lead to issues when parsing the CLI output. Real errors will be
// printed to stderr explicitly and logging output can optionally be enabled
// with the "--verbose" flag. But still print fatal errors since this is the
// only way to print any error to stderr before the application gets aborted.
Debug::instance()->setDebugLevelStderr(Debug::DebugLevel_t::Fatal);
// Create Application instance
QGuiApplication app(argc, argv);
// Set the organization / application names must be done very early because
// some other classes will use these values (for example QSettings, Debug)!
QGuiApplication::setOrganizationName("LibrePCB");
QGuiApplication::setOrganizationDomain("librepcb.org");
QGuiApplication::setApplicationName("LibrePCB CLI");
QGuiApplication::setApplicationVersion(Application::getVersion());
// Perform global initialization tasks. This must be done before any widget is
// shown.
Application::loadBundledFonts();
Application::setTranslationLocale(QLocale::system());
// Run application
cli::CommandLineInterface cli;
return cli.execute(app.arguments());
}
|