diff options
author | Chris Robinson <[email protected]> | 2019-08-31 21:47:58 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-08-31 21:47:58 -0700 |
commit | 5becf4bb73ffc448dbad5ba6dd9377f3c8ab8697 (patch) | |
tree | 85a8a6f99f536b79da765bed9ebfabb044632f79 /utils/alsoft-config/verstr.cpp | |
parent | 96af306b3c999e05194c0fd431dc49b2219a7649 (diff) |
Don't include version.h in mainwindow.cpp
Should help with post-commit compile times
Diffstat (limited to 'utils/alsoft-config/verstr.cpp')
-rw-r--r-- | utils/alsoft-config/verstr.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/utils/alsoft-config/verstr.cpp b/utils/alsoft-config/verstr.cpp new file mode 100644 index 00000000..b2fd0a17 --- /dev/null +++ b/utils/alsoft-config/verstr.cpp @@ -0,0 +1,10 @@ + +#include "verstr.h" + +#include "version.h" + + +const char *GetVersionString() +{ + return ALSOFT_VERSION "-" ALSOFT_GIT_COMMIT_HASH " (" ALSOFT_GIT_BRANCH " branch)."; +} |