From: Przemyslaw Skibinski Date: Tue, 25 Oct 2016 08:34:41 +0000 (+0200) Subject: Windows resources moved to programs/windres/ X-Git-Tag: v1.1.1~20^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F428%2Fhead;p=thirdparty%2Fzstd.git Windows resources moved to programs/windres/ --- diff --git a/build/VS2010/zstd/generate_res/zstd32.res b/build/VS2010/zstd/generate_res/zstd32.res deleted file mode 100644 index 75705d068..000000000 Binary files a/build/VS2010/zstd/generate_res/zstd32.res and /dev/null differ diff --git a/build/VS2010/zstd/generate_res/zstd64.res b/build/VS2010/zstd/generate_res/zstd64.res deleted file mode 100644 index 85de277c7..000000000 Binary files a/build/VS2010/zstd/generate_res/zstd64.res and /dev/null differ diff --git a/build/VS2010/zstd/zstd.rc b/build/VS2010/zstd/zstd.rc index 464b2f143..f5e404730 100644 --- a/build/VS2010/zstd/zstd.rc +++ b/build/VS2010/zstd/zstd.rc @@ -32,11 +32,11 @@ BEGIN BEGIN BLOCK "040904B0" BEGIN - VALUE "CompanyName", "Yann Collet" - VALUE "FileDescription", "Fast and efficient compression algorithm" + VALUE "CompanyName", "Yann Collet, Facebook, Inc." + VALUE "FileDescription", "Zstandard - Fast and efficient compression algorithm" VALUE "FileVersion", ZSTD_VERSION_STRING VALUE "InternalName", "zstd.exe" - VALUE "LegalCopyright", "Copyright (C) 2013-2016, Yann Collet" + VALUE "LegalCopyright", "Copyright (c) 2013-present, Yann Collet, Facebook, Inc." VALUE "OriginalFilename", "zstd.exe" VALUE "ProductName", "Zstandard" VALUE "ProductVersion", ZSTD_VERSION_STRING diff --git a/programs/Makefile b/programs/Makefile index 0ed7f3d07..013f54354 100644 --- a/programs/Makefile +++ b/programs/Makefile @@ -57,8 +57,8 @@ endif ifneq (,$(filter Windows%,$(OS))) EXT =.exe VOID = nul -RES64_FILE = ..\build\VS2010\zstd\generate_res\zstd64.res -RES32_FILE = ..\build\VS2010\zstd\generate_res\zstd32.res +RES64_FILE = windres\zstd64.res +RES32_FILE = windres\zstd32.res ifneq (,$(filter x86_64%,$(shell $(CC) -dumpmachine))) RES_FILE = $(RES64_FILE) else diff --git a/programs/windres/zstd32.res b/programs/windres/zstd32.res new file mode 100644 index 000000000..aec8fcf24 Binary files /dev/null and b/programs/windres/zstd32.res differ diff --git a/programs/windres/zstd64.res b/programs/windres/zstd64.res new file mode 100644 index 000000000..0fa5040fd Binary files /dev/null and b/programs/windres/zstd64.res differ