diff options
author | JPeterMugaas <jpmugaas@suddenlink.net> | 2019-04-23 07:44:00 -0400 |
---|---|---|
committer | JPeterMugaas <jpmugaas@suddenlink.net> | 2019-04-23 07:44:00 -0400 |
commit | 7136489d336fd2e584eb13cb858983caac5ad2e8 (patch) | |
tree | fe7d22f46d7345bf1316a91c2eedad4765f997f1 /programs/lz4-exe.rc.in | |
parent | 229b016f507cdc0db300c22ac4ec8bab7cd0874f (diff) | |
download | lz4-7136489d336fd2e584eb13cb858983caac5ad2e8.tar.gz lz4-7136489d336fd2e584eb13cb858983caac5ad2e8.tar.bz2 lz4-7136489d336fd2e584eb13cb858983caac5ad2e8.zip |
More build imrpvements
Moved a few other tests to Makefiles.inc. Other things might need to go there.
Made a test for symlink appropriateness. Windows can NOT handle them the same way Unix-like operating systems do (if at all). This is mostly the same as the Visual C projects.
embed version info into .dll and .exes that are redistributed.
Diffstat (limited to 'programs/lz4-exe.rc.in')
-rw-r--r-- | programs/lz4-exe.rc.in | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/programs/lz4-exe.rc.in b/programs/lz4-exe.rc.in new file mode 100644 index 0000000..7b81030 --- /dev/null +++ b/programs/lz4-exe.rc.in @@ -0,0 +1,27 @@ +1 VERSIONINFO +FILEVERSION @LIBVER_MAJOR@,@LIBVER_MINOR@,@LIBVER_PATCH@,0 +PRODUCTVERSION @LIBVER_MAJOR@,@LIBVER_MINOR@,@LIBVER_PATCH@,0 +FILEFLAGSMASK 0 +FILEOS 0x40000 +FILETYPE 1 +{ + BLOCK "StringFileInfo" + { + BLOCK "040904B0" + { + VALUE "CompanyName", "Yann Collet" + VALUE "FileDescription", "Extremely fast compression" + VALUE "FileVersion", "@LIBVER_MAJOR@.@LIBVER_MINOR@.@LIBVER_PATCH@.0" + VALUE "InternalName", "@PROGNAME@" + VALUE "LegalCopyright", "Copyright (C) 2013-2016, Yann Collet" + VALUE "OriginalFilename", "@PROGNAME@.@EXT@" + VALUE "ProductName", "LZ4" + VALUE "ProductVersion", "@LIBVER_MAJOR@.@LIBVER_MINOR@.@LIBVER_PATCH@.0" + } + } + BLOCK "VarFileInfo" + { + VALUE "Translation", 0x0409, 1200 + } +} + |