diff options
author | seth <getchoo@tuta.io> | 2023-07-16 17:15:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-16 17:15:55 -0400 |
commit | 5e0df9b6965fae285d35580d19d1ab9bbc39c16a (patch) | |
tree | 6b93c3289a9e4d80586f7e4ff3b7ca8586b52412 /launcher/Application.cpp | |
parent | b54d1651ab5ec822bff92c3e44bfeb0fd601ee60 (diff) | |
parent | 40fb387185527db5eb03be34ea35f24d3e7bedcd (diff) | |
download | PrismLauncher-5e0df9b6965fae285d35580d19d1ab9bbc39c16a.tar.gz PrismLauncher-5e0df9b6965fae285d35580d19d1ab9bbc39c16a.tar.bz2 PrismLauncher-5e0df9b6965fae285d35580d19d1ab9bbc39c16a.zip |
Merge pull request #1276 from Scrumplex/print-build-platform
Print build platform on launch
Diffstat (limited to 'launcher/Application.cpp')
-rw-r--r-- | launcher/Application.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/launcher/Application.cpp b/launcher/Application.cpp index e6070006..a9bcebb1 100644 --- a/launcher/Application.cpp +++ b/launcher/Application.cpp @@ -475,6 +475,7 @@ Application::Application(int &argc, char **argv) : QApplication(argc, argv) qDebug() << BuildConfig.LAUNCHER_DISPLAYNAME << ", (c) 2013-2021 " << BuildConfig.LAUNCHER_COPYRIGHT; qDebug() << "Version : " << BuildConfig.printableVersionString(); + qDebug() << "Platform : " << BuildConfig.BUILD_PLATFORM; qDebug() << "Git commit : " << BuildConfig.GIT_COMMIT; qDebug() << "Git refspec : " << BuildConfig.GIT_REFSPEC; if (adjustedBy.size()) |