summaryrefslogtreecommitdiff
path: root/pcre/win32/libpcreposix.rc
diff options
context:
space:
mode:
authorVincent Peyruqueou2023-03-27 11:46:59 +0200
committerVincent Peyruqueou2023-03-27 11:46:59 +0200
commit0916b5f9072f7bd1b7b045ceb07758f9dc097ac2 (patch)
tree2904afe1d5d4d770695f78db5ccd722735a8e67b /pcre/win32/libpcreposix.rc
parent5443d6828eaf5cbc7dc4613d9d75b4c192d17730 (diff)
downloadivy-c-0916b5f9072f7bd1b7b045ceb07758f9dc097ac2.zip
ivy-c-0916b5f9072f7bd1b7b045ceb07758f9dc097ac2.tar.gz
ivy-c-0916b5f9072f7bd1b7b045ceb07758f9dc097ac2.tar.bz2
ivy-c-0916b5f9072f7bd1b7b045ceb07758f9dc097ac2.tar.xz
Add sources of PCRE and Microsoft Visual Studio solutions to compile the libHEADmaster
Diffstat (limited to 'pcre/win32/libpcreposix.rc')
-rw-r--r--pcre/win32/libpcreposix.rc40
1 files changed, 40 insertions, 0 deletions
diff --git a/pcre/win32/libpcreposix.rc b/pcre/win32/libpcreposix.rc
new file mode 100644
index 0000000..57bf7b6
--- /dev/null
+++ b/pcre/win32/libpcreposix.rc
@@ -0,0 +1,40 @@
+#include <winver.h>
+#include "pcre_version.h"
+
+#ifdef GCC_WINDRES
+VS_VERSION_INFO VERSIONINFO
+#else
+VS_VERSION_INFO VERSIONINFO MOVEABLE IMPURE LOADONCALL DISCARDABLE
+#endif
+ FILEVERSION PCRE_VER_MAJOR,PCRE_VER_MINOR,PCRE_VER_REVISION,0
+ PRODUCTVERSION PCRE_VER_MAJOR,PCRE_VER_MINOR,PCRE_VER_REVISION,0
+ FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
+#ifdef _DEBUG
+ FILEFLAGS 1
+#else
+ FILEFLAGS 0
+#endif
+ FILEOS VOS__WINDOWS32
+ FILETYPE VFT_DLL
+ FILESUBTYPE 0 // not used
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904E4"
+ //language ID = U.S. English, char set = Windows, Multilingual
+ BEGIN
+ VALUE "FileDescription", "libpcreposix for Windows\0"
+ VALUE "FileVersion", PCRE_VERSION_STR "\0"
+ VALUE "InternalName", "libpcreposix.dll\0"
+ VALUE "LegalCopyright", "Copyright (c) 1997-2021 University of Cambridge.\0"
+ VALUE "OriginalFilename", "libpcreposix.dll\0"
+ VALUE "ProductName", "PCRE\0"
+ VALUE "ProductVersion", PCRE_VERSION_STR "\0"
+ VALUE "Comments", "For more information visit <http://pcre.org/>. Alternative build from <https://github.com/kiyolee/pcre-win-build/>.\0"
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x0409, 1252
+ END
+END