1//
2// Copyright (c) 2014-${LOADER_CUR_COPYRIGHT_YEAR} The Khronos Group Inc.
3// Copyright (c) 2014-${LOADER_CUR_COPYRIGHT_YEAR} Valve Corporation
4// Copyright (c) 2014-${LOADER_CUR_COPYRIGHT_YEAR} 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 ${LOADER_VER_FILE_VERSION}
26#define VER_FILE_DESCRIPTION_STR ${LOADER_VER_FILE_DESCRIPTION_STR}
27#define VER_FILE_VERSION_STR ${LOADER_VER_FILE_VERSION_STR}
28#define VER_COPYRIGHT_STR "Copyright (C) 2015-${LOADER_CUR_COPYRIGHT_YEAR}"
29
30VS_VERSION_INFO VERSIONINFO
31 FILEVERSION VER_FILE_VERSION
32 PRODUCTVERSION VER_FILE_VERSION
33 FILEFLAGSMASK 0x3fL
34#ifdef _DEBUG
35 FILEFLAGS VS_FF_DEBUG
36#else
37 FILEFLAGS 0x0L
38#endif
39
40 FILEOS 0x00000L
41 FILETYPE VFT_DLL
42 FILESUBTYPE 0x0L
43BEGIN
44    BLOCK "StringFileInfo"
45    BEGIN
46        BLOCK "04090000"
47        BEGIN
48            VALUE "FileDescription", VER_FILE_DESCRIPTION_STR
49            VALUE "FileVersion", VER_FILE_VERSION_STR
50            VALUE "LegalCopyright", VER_COPYRIGHT_STR
51            VALUE "ProductName", "Vulkan Runtime"
52            VALUE "ProductVersion", VER_FILE_VERSION_STR
53        END
54    END
55    BLOCK "VarFileInfo"
56    BEGIN
57        VALUE "Translation", 0x409, 0000
58    END
59END
60