diff --git a/projects/ConsoleMain/ConsoleMain.rc b/projects/ConsoleMain/ConsoleMain.rc new file mode 100644 index 0000000..bef2127 Binary files /dev/null and b/projects/ConsoleMain/ConsoleMain.rc differ diff --git a/projects/ConsoleMain/ConsoleMain.vcxproj b/projects/ConsoleMain/ConsoleMain.vcxproj index 7bcb23b..92affb1 100644 --- a/projects/ConsoleMain/ConsoleMain.vcxproj +++ b/projects/ConsoleMain/ConsoleMain.vcxproj @@ -29,6 +29,12 @@ + + + + + + 16.0 {3CC756EB-2FD1-44A2-82B6-61BAD37D327D} diff --git a/projects/ConsoleMain/ConsoleMain.vcxproj.filters b/projects/ConsoleMain/ConsoleMain.vcxproj.filters index 28513d5..b7a0414 100644 --- a/projects/ConsoleMain/ConsoleMain.vcxproj.filters +++ b/projects/ConsoleMain/ConsoleMain.vcxproj.filters @@ -6,4 +6,19 @@ + + + {71932ac6-c4ea-4458-9a3d-4c406741d19f} + + + + + Resources + + + + + Resources + + \ No newline at end of file diff --git a/src/ConsoleMain/Version.h b/src/ConsoleMain/Version.h new file mode 100644 index 0000000..428cd44 --- /dev/null +++ b/src/ConsoleMain/Version.h @@ -0,0 +1,33 @@ +// update these +#define VERSION_MAJOR 0 +#define VERSION_MINOR 0 +#define VERSION_PATCH 0 + +/////////////////////////////////////////////////////////////////////////////// + +#define _STRINGIFY(x) #x +#define STRINGIFY(x) _STRINGIFY(x) + + +#define VER_FILE_VERSION VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH +#define VER_FILE_VERSION_STR STRINGIFY(VERSION_MAJOR) "." \ + STRINGIFY(VERSION_MINOR) "." \ + STRINGIFY(VERSION_PATCH) +#define VER_PRODUCT_VERSION VER_FILE_VERSION +#define VER_PRODUCT_VERSION_STR VER_FILE_VERSION_STR + +#define VER_PRODUCT_NAME_STR "CppBuildAnalyzer" +#define VER_ORIGINAL_FILENAME_STR VER_PRODUCT_NAME_STR ".exe" +#define VER_INTERNAL_NAME_STR VER_ORIGINAL_FILENAME_STR + +#ifdef _DEBUG +#define VER_DEBUG_FLAGS VS_FF_DEBUG +#else +#define VER_DEBUG_FLAGS 0 +#endif + +#define VER_FILE_FLAGS VER_DEBUG_FLAGS +#define VER_FILE_OS VOS_NT_WINDOWS32 +#define VER_FILE_TYPE VFT_APP + +///////////////////////////////////////////////////////////////////////////////