mirror of
https://github.com/uxlfoundation/oneDNN.git
synced 2025-10-20 10:03:50 +08:00
51 lines
1.9 KiB
Plaintext
51 lines
1.9 KiB
Plaintext
/*******************************************************************************
|
|
* Copyright 2019-2021 Intel Corporation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*******************************************************************************/
|
|
|
|
#include <winver.h>
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION @DNNL_VERSION_MAJOR@,@DNNL_VERSION_MINOR@,@DNNL_VERSION_PATCH@,0
|
|
PRODUCTVERSION @DNNL_VERSION_MAJOR@,@DNNL_VERSION_MINOR@,@DNNL_VERSION_PATCH@,0
|
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
FILEFLAGS 0x0L
|
|
FILEOS VOS__WINDOWS32
|
|
FILETYPE VFT_DLL
|
|
FILESUBTYPE 0x0L
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904b0"
|
|
BEGIN
|
|
VALUE "Comments", "\0"
|
|
VALUE "CompanyName", "Intel Corporation\0"
|
|
VALUE "FileDescription", "@PROJECT_FULL_NAME@\0"
|
|
VALUE "FileVersion", "@PROJECT_VERSION@ (@DNNL_VERSION_HASH@)\0"
|
|
VALUE "InternalName", "@PROJECT_NAME@"
|
|
VALUE "LegalCopyright", "Copyright @DNNL_VERSION_YEAR@ Intel Corporation.\0"
|
|
VALUE "LegalTrademarks", "\0"
|
|
VALUE "OriginalFilename", "@DNNL_LIBRARY_NAME@.dll\0"
|
|
VALUE "PrivateBuild", "\0"
|
|
VALUE "ProductName", "@PROJECT_FULL_NAME@\0"
|
|
VALUE "ProductVersion", "@PROJECT_VERSION@ (@DNNL_VERSION_HASH@)\0"
|
|
VALUE "SpecialBuild", "\0"
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x409, 1200
|
|
END
|
|
END
|