1// Copyright (c) 2005-2023 Intel Corporation 2// 3// Licensed under the Apache License, Version 2.0 (the "License"); 4// you may not use this file except in compliance with the License. 5// You may obtain a copy of the License at 6// 7// http://www.apache.org/licenses/LICENSE-2.0 8// 9// Unless required by applicable law or agreed to in writing, software 10// distributed under the License is distributed on an "AS IS" BASIS, 11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12// See the License for the specific language governing permissions and 13// limitations under the License. 14 15///////////////////////////////////////////////////////////////////////////// 16// 17// Includes 18// 19#include <winresrc.h> 20#include "../../include/oneapi/tbb/version.h" 21 22///////////////////////////////////////////////////////////////////////////// 23// Neutral resources 24 25#ifdef _WIN32 26LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 27#pragma code_page(1252) 28#endif //_WIN32 29 30///////////////////////////////////////////////////////////////////////////// 31// 32// Version 33// 34#define TBB_VERNUMBERS TBB_VERSION_MAJOR,TBB_VERSION_MINOR 35#define TBB_VERSION TBB_VERSION_STRING 36 37VS_VERSION_INFO VERSIONINFO 38 FILEVERSION TBB_VERNUMBERS 39 PRODUCTVERSION TBB_VERNUMBERS 40 FILEFLAGSMASK 0x17L 41#ifdef _DEBUG 42 FILEFLAGS 0x1L 43#else 44 FILEFLAGS 0x0L 45#endif 46 FILEOS 0x40004L 47 FILETYPE 0x2L 48 FILESUBTYPE 0x0L 49BEGIN 50 BLOCK "StringFileInfo" 51 BEGIN 52 BLOCK "000004b0" 53 BEGIN 54 VALUE "CompanyName", "Intel Corporation\0" 55 VALUE "FileDescription", "oneAPI Threading Building Blocks (oneTBB) library\0" 56 VALUE "FileVersion", TBB_VERSION "\0" 57 VALUE "LegalCopyright", "Copyright 2005-2022 Intel Corporation. All Rights Reserved.\0" 58 VALUE "LegalTrademarks", "\0" 59#ifndef TBB_USE_DEBUG 60 VALUE "OriginalFilename", "tbbmalloc_proxy.dll\0" 61#else 62 VALUE "OriginalFilename", "tbbmalloc_proxy_debug.dll\0" 63#endif 64 VALUE "ProductName", "oneAPI Threading Building Blocks (oneTBB)\0" 65 VALUE "ProductVersion", TBB_VERSION "\0" 66 VALUE "PrivateBuild", "\0" 67 VALUE "SpecialBuild", "\0" 68 END 69 END 70 BLOCK "VarFileInfo" 71 BEGIN 72 VALUE "Translation", 0x0, 1200 73 END 74END 75