From 2b38c1a4837135f028e2714f9319a5e51d20cda3 Mon Sep 17 00:00:00 2001 From: Jean-Paul Mari Date: Wed, 13 Sep 2017 18:04:03 -0400 Subject: [PATCH] Added version.h file version.h is generated by the makefile but not by Visual Studio, so needs to add the file so compilation won't fail. --- .gitignore | 1 - src/version.h | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 src/version.h diff --git a/.gitignore b/.gitignore index 1bafaa1..819e5f7 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,6 @@ obj/ release/ Screenshots/ software/ -src/version.h src/*~ src/*/*.bak src/m68000/obj/ diff --git a/src/version.h b/src/version.h new file mode 100644 index 0000000..3677d91 --- /dev/null +++ b/src/version.h @@ -0,0 +1,3 @@ +#define VJ_RELEASE_VERSION "v2.1.3" +#define VJ_RELEASE_SUBVERSION "Final" +#define VJ_REMOVE_DEV_CODE -- 2.20.1