diff options
author | Chris Robinson <[email protected]> | 2016-12-21 01:08:33 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-12-21 01:12:47 -0800 |
commit | bcb6dfee71ef0ce4a0b9e7ceccb943f7f28704c4 (patch) | |
tree | e06b805f989c34613ab1980aa0d2a9dc976b215d /utils/alsoft-config/mainwindow.cpp | |
parent | 8f581c0e66e52a6f24e85763b39ed3be29a3e792 (diff) |
Trace the commit ID and branch the library was built from
Diffstat (limited to 'utils/alsoft-config/mainwindow.cpp')
-rw-r--r-- | utils/alsoft-config/mainwindow.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/utils/alsoft-config/mainwindow.cpp b/utils/alsoft-config/mainwindow.cpp index 309c4d7b..8d5dfe02 100644 --- a/utils/alsoft-config/mainwindow.cpp +++ b/utils/alsoft-config/mainwindow.cpp @@ -1,6 +1,8 @@ #include "config.h" +#include "version.h" + #include <iostream> #include <cmath> @@ -461,7 +463,8 @@ void MainWindow::cancelCloseAction() void MainWindow::showAboutPage() { QMessageBox::information(this, tr("About"), - tr("OpenAL Soft Configuration Utility.\nBuilt for OpenAL Soft library version ")+(ALSOFT_VERSION ".") + tr("OpenAL Soft Configuration Utility.\nBuilt for OpenAL Soft library version ")+ + (ALSOFT_VERSION "-" ALSOFT_GIT_COMMIT_HASH " (" ALSOFT_GIT_BRANCH " branch).") ); } |