Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2020-09-02 10:22:16 +0300
committerRobert Adam <dev@robert-adam.de>2020-09-02 19:30:33 +0300
commit40090d297f03977906557d4dfd2fd29067cf680d (patch)
tree51c2686d81d88e7ee46a8d728c01c4f3b4fab3d6 /overlay_winx64/overlay_exe_winx64
parent8bdf32d4808135e8e8d6cba004e36b4a6ead0f42 (diff)
MAINT: Make use of cmake configure for version
Instead of having to change the version number and the build year in all those files manually, we let cmake do the work by replacing the respective values in templates.
Diffstat (limited to 'overlay_winx64/overlay_exe_winx64')
-rw-r--r--overlay_winx64/overlay_exe_winx64/overlay_exe.rc.in (renamed from overlay_winx64/overlay_exe_winx64/overlay_exe.rc)20
1 files changed, 10 insertions, 10 deletions
diff --git a/overlay_winx64/overlay_exe_winx64/overlay_exe.rc b/overlay_winx64/overlay_exe_winx64/overlay_exe.rc.in
index 7d0c0c9a3..2d6a2ff66 100644
--- a/overlay_winx64/overlay_exe_winx64/overlay_exe.rc
+++ b/overlay_winx64/overlay_exe_winx64/overlay_exe.rc.in
@@ -18,13 +18,13 @@
#endif
VS_VERSION_INFO VERSIONINFO
- FILEVERSION 1,4,0,0
- PRODUCTVERSION 1,4,0,0
- FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
- FILEFLAGS (VER_DEBUG|VER_RELEASE)
- FILEOS VOS_NT_WINDOWS32
- FILETYPE VFT_APP
- FILESUBTYPE 0L
+ FILEVERSION @PROJECT_VERSION_MAJOR@,@PROJECT_VERSION_MINOR@,@PROJECT_VERSION_PATCH@,0
+ PRODUCTVERSION @PROJECT_VERSION_MAJOR@,@PROJECT_VERSION_MINOR@,@PROJECT_VERSION_PATCH@,0
+ FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
+ FILEFLAGS (VER_DEBUG|VER_RELEASE)
+ FILEOS VOS_NT_WINDOWS32
+ FILETYPE VFT_APP
+ FILESUBTYPE 0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
@@ -32,9 +32,9 @@ VS_VERSION_INFO VERSIONINFO
BEGIN
VALUE "CompanyName", "The Mumble Developers"
VALUE "FileDescription", "Mumble - Low-latency VoIP client"
- VALUE "FileVersion", "1.4.0"
- VALUE "ProductVersion", "1.4.0"
- VALUE "LegalCopyright", "Copyright (c) 2005-2020 The Mumble Developers"
+ VALUE "FileVersion", "@PROJECT_VERSION@"
+ VALUE "ProductVersion", "@PROJECT_VERSION@"
+ VALUE "LegalCopyright", "Copyright (c) 2005-@MUMBLE_BUILD_YEAR@ The Mumble Developers"
VALUE "OriginalFilename", "mumble_ol_helper_x64.exe"
VALUE "ProductName", "Mumble"
#ifdef SNAPSHOT_BUILD