1// Copyright 2005-2020 The Mumble Developers. All rights reserved.
2// Use of this source code is governed by a BSD-style license
3// that can be found in the LICENSE file at the root of the
4// Mumble source tree or at <https://www.mumble.info/LICENSE>.
5
6#include <winver.h>
7
8IDI_ICON1               ICON    DISCARDABLE     "../../icons/mumble.ico"
9
10#ifndef DEBUG
11#define VER_DEBUG                   0L
12#else
13#define VER_DEBUG                   VS_FF_DEBUG
14#endif
15
16#ifdef SNAPSHOT_BUILD
17#define	VER_RELEASE	VS_FF_SPECIALBUILD|VS_FF_PRERELEASE
18#else
19#define VER_RELEASE 0L
20#endif
21
22VS_VERSION_INFO VERSIONINFO
23	FILEVERSION		1,3,3,0
24	PRODUCTVERSION	1,3,3,0
25	FILEFLAGSMASK	VS_FFI_FILEFLAGSMASK
26	FILEFLAGS		(VER_DEBUG|VER_RELEASE)
27	FILEOS			VOS_NT_WINDOWS32
28	FILETYPE		VFT_APP
29	FILESUBTYPE		0L
30	BEGIN
31		BLOCK "StringFileInfo"
32		BEGIN
33			BLOCK "040904E4"
34			BEGIN
35				VALUE "CompanyName", "The Mumble Developers"
36				VALUE "FileDescription", "Mumble - Low-latency VoIP client"
37				VALUE "FileVersion", "1.3.3"
38				VALUE "ProductVersion", "1.3.3"
39				VALUE "LegalCopyright", "Copyright (c) 2005-2020 The Mumble Developers"
40				VALUE "OriginalFilename", "mumble.exe"
41				VALUE "ProductName", "Mumble"
42#ifdef SNAPSHOT_BUILD
43				VALUE "SpecialBuild", "Snapshot development release"
44#endif
45			END
46		END
47		BLOCK "VarFileInfo"
48		BEGIN
49			VALUE "Translation", 0x409, 1252
50		END
51	END
52