diff options
| author | JosJuice <josjuice@gmail.com> | 2021-05-21 13:57:59 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2021-05-21 17:03:01 +0200 |
| commit | 27cc0b539a5fb4c7ac09342a0d265133afe9a0f4 (patch) | |
| tree | c8299a0caf8ac7a46a117548813b0b4484468cef /Source/Core/Common/Version.cpp | |
| parent | 0a2fde73a274fda20fa81b046291da35c9a93726 (diff) | |
Avoid including scmrev.h except in Version.cpp
Any file which includes scmrev.h must be rebuilt when scmrev.h
is regenerated. By not including scmrev.h from any file other
than Version.cpp, incremental builds become a little faster.
Diffstat (limited to 'Source/Core/Common/Version.cpp')
| -rw-r--r-- | Source/Core/Common/Version.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/Common/Version.cpp b/Source/Core/Common/Version.cpp index 372eb3204d..17b9b4e789 100644 --- a/Source/Core/Common/Version.cpp +++ b/Source/Core/Common/Version.cpp @@ -33,6 +33,7 @@ const std::string scm_rev_git_str = SCM_REV_STR; const std::string scm_desc_str = SCM_DESC_STR; const std::string scm_branch_str = SCM_BRANCH_STR; const std::string scm_distributor_str = SCM_DISTRIBUTOR_STR; +const std::string scm_update_track_str = SCM_UPDATE_TRACK_STR; #ifdef _WIN32 const std::string netplay_dolphin_ver = SCM_DESC_STR " Win"; |
