diff options
author | Fred Sundvik <fsundvik@gmail.com> | 2016-08-08 11:27:15 +0300 |
---|---|---|
committer | Fred Sundvik <fsundvik@gmail.com> | 2016-08-20 03:56:33 +0300 |
commit | dd8c1a7659fec4fe3211682864fc4c50d4a61f85 (patch) | |
tree | 8f988ca3d69a4006d848688882fc13cf7b6779af /tmk_core/common | |
parent | 60c6e79ecb032e9726809a295ab3e0011e6b2fb4 (diff) |
Don't add VERSION as a define
To avoid full recompilation when the git commit hash changes.
Diffstat (limited to 'tmk_core/common')
-rw-r--r-- | tmk_core/common/command.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tmk_core/common/command.c b/tmk_core/common/command.c index 084c9fe155..476fc6fe3c 100644 --- a/tmk_core/common/command.c +++ b/tmk_core/common/command.c @@ -34,6 +34,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "command.h" #include "backlight.h" #include "quantum.h" +#include "version.h" #ifdef MOUSEKEY_ENABLE #include "mousekey.h" @@ -180,7 +181,7 @@ static void print_version(void) print("VID: " STR(VENDOR_ID) "(" STR(MANUFACTURER) ") " "PID: " STR(PRODUCT_ID) "(" STR(PRODUCT) ") " "VER: " STR(DEVICE_VER) "\n"); - print("BUILD: " STR(VERSION) " (" __TIME__ " " __DATE__ ")\n"); + print("BUILD: " STR(QMK_VERSION) " (" __TIME__ " " __DATE__ ")\n"); /* build options */ print("OPTIONS:" |