forked from apache/ignite-3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IGNITE-22660 Add meta info to ODBC dll (apache#4768)
- Loading branch information
Showing
4 changed files
with
61 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,8 +21,6 @@ build/ | |
*.ipr | ||
out/ | ||
|
||
modules/platforms/cpp/cmake-build-* | ||
|
||
# JVM crash dumps | ||
**/hs_err_pid* | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
cmake-build-* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#include <windows.h> | ||
|
||
#define VER_COMPANYNAME_STR "The Apache Software Foundation" | ||
#define VER_FILEDESCRIPTION_STR "The ODBC Driver for Apache Ignite 3" | ||
#define VER_PRODUCTNAME_STR "The Apache Ignite 3" | ||
|
||
#define VER_FILEVERSION @CMAKE_PROJECT_VERSION_COMMAS@,0 | ||
#define VER_FILEVERSION_STR "@[email protected]\0" | ||
|
||
#define VER_PRODUCTVERSION @CMAKE_PROJECT_VERSION_COMMAS@,0 | ||
#define VER_PRODUCTVERSION_STR "@CMAKE_PROJECT_VERSION@\0" | ||
|
||
#define VER_INTERNALNAME_STR "@PROJECT_NAME@" | ||
#define VER_ORIGINALFILENAME_STR "@[email protected]" | ||
|
||
VS_VERSION_INFO VERSIONINFO | ||
FILEVERSION VER_FILEVERSION | ||
PRODUCTVERSION VER_PRODUCTVERSION | ||
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK | ||
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 "InternalName", VER_INTERNALNAME_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 WORDs, | ||
// WORD pairs, with each pair describing a language, codepage combination supported by the file. | ||
// | ||
// Current values "0x409,1252" indicating that it supports English language (0x409) in the Windows ANSI | ||
// codepage (1252). | ||
VALUE "Translation", 0x409, 1252 | ||
END | ||
END |