67 lines
2.3 KiB
Plaintext
67 lines
2.3 KiB
Plaintext
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// Licensed under the MIT License.
|
||
|
|
||
|
#include <windows.h>
|
||
|
|
||
|
#define VER_FILEVERSION 1,4,0,0
|
||
|
#define VER_FILEVERSION_STR "1.4.0-private\0"
|
||
|
|
||
|
#define VER_PRODUCTVERSION 1,4,0,0
|
||
|
#define VER_PRODUCTVERSION_STR "1.4.0-private\0"
|
||
|
|
||
|
#define VER_COMPANYNAME_STR "Microsoft\0"
|
||
|
#define VER_FILEDESCRIPTION_STR "Azure Kinect Viewer\0"
|
||
|
#define VER_ORIGINALFILENAME_STR "k4aviewer.exe\0"
|
||
|
#define VER_PRODUCTNAME_STR "Azure Kinect\0"
|
||
|
#define VER_COPYRIGHT_STR "Copyright Microsoft Corporation. All rights reserved.\0"
|
||
|
|
||
|
#ifndef DEBUG
|
||
|
#define VER_DEBUG 0
|
||
|
#else
|
||
|
#define VER_DEBUG VS_FF_DEBUG
|
||
|
#endif
|
||
|
|
||
|
#define VER_PRIVATEBUILD 0
|
||
|
#define VER_PRERELEASE 0
|
||
|
|
||
|
#if 1
|
||
|
APP_ICON ICON "/home/dd/Documents/Azure-Kinect-Sensor-SDK/kinect-viewer.ico"
|
||
|
#endif
|
||
|
|
||
|
VS_VERSION_INFO VERSIONINFO
|
||
|
FILEVERSION VER_FILEVERSION
|
||
|
PRODUCTVERSION VER_PRODUCTVERSION
|
||
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
||
|
FILEFLAGS (VER_PRIVATEBUILD|VER_PRERELEASE|VER_DEBUG)
|
||
|
FILEOS VOS__WINDOWS32
|
||
|
FILETYPE VFT_DLL
|
||
|
FILESUBTYPE VFT2_UNKNOWN
|
||
|
BEGIN
|
||
|
BLOCK "StringFileInfo"
|
||
|
BEGIN
|
||
|
BLOCK "040904E4"
|
||
|
BEGIN
|
||
|
VALUE "CompanyName", VER_COMPANYNAME_STR
|
||
|
VALUE "FileDescription", VER_FILEDESCRIPTION_STR
|
||
|
VALUE "FileVersion", VER_FILEVERSION_STR
|
||
|
VALUE "LegalCopyright", VER_COPYRIGHT_STR
|
||
|
VALUE "OriginalFilename", VER_ORIGINALFILENAME_STR
|
||
|
VALUE "ProductName", VER_PRODUCTNAME_STR
|
||
|
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
|
||
|
END
|
||
|
END
|
||
|
|
||
|
BLOCK "VarFileInfo"
|
||
|
BEGIN
|
||
|
/* The following line should only be modified for localized versions. */
|
||
|
/* It consists of any number of WORD,WORD pairs, with each pair */
|
||
|
/* describing a language,codepage combination supported by the file. */
|
||
|
/* */
|
||
|
/* For example, a file might have values "0x409,1252" indicating that it */
|
||
|
/* supports English language (0x409) in the Windows ANSI codepage (1252). */
|
||
|
|
||
|
VALUE "Translation", 0x409, 1252
|
||
|
|
||
|
END
|
||
|
END
|