diff options
author | Petr Mrázek <peterix@gmail.com> | 2014-04-05 22:58:47 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2014-04-06 00:33:33 +0200 |
commit | 42e305bb9d1babef9bb66a8d376289e8aebed671 (patch) | |
tree | 7cad2b473abc703d3c9f29daee7f5560d6e22e76 /MultiMC.cpp | |
parent | ad9d082f5713df72fc18de957547b7ad47a60e46 (diff) | |
download | MultiMC-42e305bb9d1babef9bb66a8d376289e8aebed671.tar MultiMC-42e305bb9d1babef9bb66a8d376289e8aebed671.tar.gz MultiMC-42e305bb9d1babef9bb66a8d376289e8aebed671.tar.lz MultiMC-42e305bb9d1babef9bb66a8d376289e8aebed671.tar.xz MultiMC-42e305bb9d1babef9bb66a8d376289e8aebed671.zip |
Get rid of long rebuilds because of minor cmake config changes
Diffstat (limited to 'MultiMC.cpp')
-rw-r--r-- | MultiMC.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/MultiMC.cpp b/MultiMC.cpp index f6e4e995..50a01f91 100644 --- a/MultiMC.cpp +++ b/MultiMC.cpp @@ -1,4 +1,6 @@ #include "MultiMC.h" +#include "Config.h" + #include <iostream> #include <QDir> #include <QFileInfo> @@ -50,9 +52,7 @@ static const int APPDATA_BUFFER_SIZE = 1024; using namespace Util::Commandline; MultiMC::MultiMC(int &argc, char **argv, bool root_override) - : QApplication(argc, argv), - m_version{VERSION_MAJOR, VERSION_MINOR, VERSION_HOTFIX, VERSION_BUILD, - MultiMCVersion::VERSION_TYPE, VERSION_CHANNEL, BUILD_PLATFORM} + : QApplication(argc, argv) { setOrganizationName("MultiMC"); setApplicationName("MultiMC5"); @@ -111,8 +111,8 @@ MultiMC::MultiMC(int &argc, char **argv, bool root_override) // display version and exit if (args["version"].toBool()) { - std::cout << "Version " << VERSION_STR << std::endl; - std::cout << "Git " << GIT_COMMIT << std::endl; + std::cout << "Version " << BuildConfig.VERSION_STR.toStdString() << std::endl; + std::cout << "Git " << BuildConfig.GIT_COMMIT.toStdString() << std::endl; m_status = MultiMC::Succeeded; return; } @@ -165,8 +165,8 @@ MultiMC::MultiMC(int &argc, char **argv, bool root_override) initLogger(); QLOG_INFO() << "MultiMC 5, (c) 2013 MultiMC Contributors"; - QLOG_INFO() << "Version : " << VERSION_STR; - QLOG_INFO() << "Git commit : " << GIT_COMMIT; + QLOG_INFO() << "Version : " << BuildConfig.VERSION_STR; + QLOG_INFO() << "Git commit : " << BuildConfig.GIT_COMMIT; if (adjustedBy.size()) { QLOG_INFO() << "Work dir before adjustment : " << origcwdPath; @@ -193,7 +193,7 @@ MultiMC::MultiMC(int &argc, char **argv, bool root_override) m_notificationChecker.reset(new NotificationChecker()); // initialize the news checker - m_newsChecker.reset(new NewsChecker(NEWS_RSS_URL)); + m_newsChecker.reset(new NewsChecker(BuildConfig.NEWS_RSS_URL)); // initialize the status checker m_statusChecker.reset(new StatusChecker()); @@ -333,7 +333,7 @@ void MultiMC::initGlobalSettings() { m_settings.reset(new INISettingsObject("multimc.cfg", this)); // Updates - m_settings->registerSetting("UpdateChannel", version().channel); + m_settings->registerSetting("UpdateChannel", BuildConfig.VERSION_CHANNEL); m_settings->registerSetting("AutoUpdate", true); // Notifications |