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:
Diffstat (limited to 'helpers/g15helper/g15helper.rc.in')
-rw-r--r--helpers/g15helper/g15helper.rc.in51
1 files changed, 51 insertions, 0 deletions
diff --git a/helpers/g15helper/g15helper.rc.in b/helpers/g15helper/g15helper.rc.in
new file mode 100644
index 000000000..85fc022a2
--- /dev/null
+++ b/helpers/g15helper/g15helper.rc.in
@@ -0,0 +1,51 @@
+// Copyright 2005-2020 The Mumble Developers. All rights reserved.
+// Use of this source code is governed by a BSD-style license
+// that can be found in the LICENSE file at the root of the
+// Mumble source tree or at <https://www.mumble.info/LICENSE>.
+
+#include <winver.h>
+
+IDI_ICON1 ICON DISCARDABLE "@G15HELPER_ICON@"
+
+#ifndef DEBUG
+#define VER_DEBUG 0L
+#else
+#define VER_DEBUG VS_FF_DEBUG
+#endif
+
+#ifdef SNAPSHOT_BUILD
+#define VER_RELEASE VS_FF_SPECIALBUILD|VS_FF_PRERELEASE
+#else
+#define VER_RELEASE 0L
+#endif
+
+VS_VERSION_INFO VERSIONINFO
+ FILEVERSION @PROJECT_VERSION_MAJOR@,@PROJECT_VERSION_MINOR@,@PROJECT_VERSION_PATCH@
+ PRODUCTVERSION @PROJECT_VERSION_MAJOR@,@PROJECT_VERSION_MINOR@,@PROJECT_VERSION_PATCH@
+ FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
+ FILEFLAGS (VER_DEBUG|VER_RELEASE)
+ FILEOS VOS_NT_WINDOWS32
+ FILETYPE VFT_APP
+ FILESUBTYPE 0L
+ BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904E4"
+ BEGIN
+ VALUE "CompanyName", "The Mumble Developers"
+ VALUE "FileDescription", "Mumble G15 LCD Helper"
+ VALUE "FileVersion", "@PROJECT_VERSION@"
+ VALUE "ProductVersion", "@PROJECT_VERSION@"
+ VALUE "LegalCopyright", "Copyright (c) 2005-@MUMBLE_BUILD_YEAR@ The Mumble Developers"
+ VALUE "OriginalFilename", "mumble-g15-helper.exe"
+ VALUE "ProductName", "Mumble G15 LCD Helper"
+#ifdef SNAPSHOT_BUILD
+ VALUE "SpecialBuild", "Snapshot development release"
+#endif
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x409, 1252
+ END
+ END