You've already forked llvm-project
mirror of
https://github.com/encounter/llvm-project.git
synced 2026-03-30 11:27:19 -07:00
57b08b0944
to reflect the new license. These used slightly different spellings that defeated my regular expressions. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351648
70 lines
2.8 KiB
Plaintext
70 lines
2.8 KiB
Plaintext
// libomp.rc.var
|
|
|
|
//
|
|
////===----------------------------------------------------------------------===//
|
|
////
|
|
//// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
//// See https://llvm.org/LICENSE.txt for license information.
|
|
//// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
////
|
|
////===----------------------------------------------------------------------===//
|
|
//
|
|
|
|
#include "winresrc.h"
|
|
#include "kmp_config.h"
|
|
|
|
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US // English (U.S.) resources
|
|
#pragma code_page(1252)
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
// Parts of FILEVERSION and PRODUCTVERSION are 16-bit fields, entire build date yyyymmdd
|
|
// does not fit into one version part, so we need to split it into yyyy and mmdd:
|
|
FILEVERSION @LIBOMP_VERSION_MAJOR@,@LIBOMP_VERSION_MINOR@,@LIBOMP_VERSION_BUILD_YEAR@,@LIBOMP_VERSION_BUILD_MONTH_DAY@
|
|
PRODUCTVERSION @LIBOMP_VERSION_MAJOR@,@LIBOMP_VERSION_MINOR@,@LIBOMP_VERSION_BUILD_YEAR@,@LIBOMP_VERSION_BUILD_MONTH_DAY@
|
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
FILEFLAGS 0
|
|
#if KMP_DEBUG
|
|
| VS_FF_DEBUG
|
|
#endif
|
|
#if @LIBOMP_VERSION_BUILD@ == 0
|
|
| VS_FF_PRIVATEBUILD | VS_FF_PRERELEASE
|
|
#endif
|
|
FILEOS VOS_NT_WINDOWS32 // Windows* Server* 2003, XP*, 2000, or NT*
|
|
FILETYPE VFT_DLL
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904b0" // U.S. English, Unicode (0x04b0 == 1200)
|
|
BEGIN
|
|
|
|
// FileDescription and LegalCopyright should be short.
|
|
VALUE "FileDescription", "LLVM* OpenMP* Runtime Library\0"
|
|
// Following values may be relatively long.
|
|
VALUE "CompanyName", "LLVM\0"
|
|
// VALUE "LegalTrademarks", "\0" // Not used for now.
|
|
VALUE "ProductName", "LLVM* OpenMP* Runtime Library\0"
|
|
VALUE "ProductVersion", "@LIBOMP_VERSION_MAJOR@.@LIBOMP_VERSION_MINOR@\0"
|
|
VALUE "FileVersion", "@LIBOMP_VERSION_BUILD@\0"
|
|
VALUE "InternalName", "@LIBOMP_LIB_FILE@\0"
|
|
VALUE "OriginalFilename", "@LIBOMP_LIB_FILE@\0"
|
|
VALUE "Comments",
|
|
"LLVM* OpenMP* @LIBOMP_LEGAL_TYPE@ Library "
|
|
"version @LIBOMP_VERSION_MAJOR@.@LIBOMP_VERSION_MINOR@.@LIBOMP_VERSION_BUILD@ "
|
|
"for @LIBOMP_LEGAL_ARCH@ architecture built on @LIBOMP_BUILD_DATE@.\0"
|
|
#if @LIBOMP_VERSION_BUILD@ == 0
|
|
VALUE "PrivateBuild",
|
|
"This is a development build.\0"
|
|
#endif
|
|
// VALUE "SpecialBuild", "\0" // Not used for now.
|
|
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 1033, 1200
|
|
// 1033 -- U.S. English, 1200 -- Unicode
|
|
END
|
|
END
|
|
|
|
// end of file //
|