• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1//
2// Copyright (c) 2014-2022 The Khronos Group Inc.
3// Copyright (c) 2014-2022 Valve Corporation
4// Copyright (c) 2014-2022 LunarG, Inc.
5//
6// Licensed under the Apache License, Version 2.0 (the "License");
7// you may not use this file except in compliance with the License.
8// You may obtain a copy of the License at
9//
10//     http://www.apache.org/licenses/LICENSE-2.0
11//
12// Unless required by applicable law or agreed to in writing, software
13// distributed under the License is distributed on an "AS IS" BASIS,
14// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15// See the License for the specific language governing permissions and
16// limitations under the License.
17//
18// Author: David Pinedo <david@lunarg.com>
19// Author: Charles Giessen <charles@lunarg.com>
20//
21
22#include "winres.h"
23
24// All set through CMake
25#define VER_FILE_VERSION 1, 0, 1111, 2222
26#define VER_FILE_DESCRIPTION_STR "Vulkan Loader - Dev Build"
27#define VER_FILE_VERSION_STR "1.0.1111.2222.Dev Build"
28
29VS_VERSION_INFO VERSIONINFO
30 FILEVERSION VER_FILE_VERSION
31 PRODUCTVERSION VER_FILE_VERSION
32 FILEFLAGSMASK 0x3fL
33#ifdef _DEBUG
34 FILEFLAGS VS_FF_DEBUG
35#else
36 FILEFLAGS 0x0L
37#endif
38
39 FILEOS 0x00000L
40 FILETYPE VFT_DLL
41 FILESUBTYPE 0x0L
42BEGIN
43    BLOCK "StringFileInfo"
44    BEGIN
45        BLOCK "04090000"
46        BEGIN
47            VALUE "FileDescription", VER_FILE_DESCRIPTION_STR
48            VALUE "FileVersion", VER_FILE_VERSION_STR
49            VALUE "LegalCopyright", "Copyright (C) 2015-2022"
50            VALUE "ProductName", "Vulkan Runtime"
51            VALUE "ProductVersion", VER_FILE_VERSION_STR
52        END
53    END
54    BLOCK "VarFileInfo"
55    BEGIN
56        VALUE "Translation", 0x409, 0000
57    END
58END
59