From bd7751147ee9a4760aeb047e86a7c2b4bd19e07e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Trojnara?= Date: Tue, 20 Feb 2024 10:03:06 +0100 Subject: [PATCH] Update Windows build documentation --- INSTALL.W32.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL.W32.md b/INSTALL.W32.md index 34cd69a..bf2a196 100644 --- a/INSTALL.W32.md +++ b/INSTALL.W32.md @@ -12,7 +12,7 @@ 2) Run "MSYS2 MinGW 64-bit" and build 64-bit Windows executables. ``` cd osslsigncode-folder - x86_64-w64-mingw32-gcc osslsigncode.c msi.c -o osslsigncode.exe \ + x86_64-w64-mingw32-gcc *.c -o osslsigncode.exe \ -lcrypto -lssl -lcurl \ -D 'PACKAGE_STRING="osslsigncode x.y"' \ -D 'PACKAGE_BUGREPORT="Your.Email@example.com"' \ @@ -71,7 +71,7 @@ 3) Build 64-bit Windows executables. ``` cd osslsigncode-folder - x86_64-w64-mingw32-gcc osslsigncode.c msi.c -o osslsigncode.exe \ + x86_64-w64-mingw32-gcc *.c -o osslsigncode.exe \ -L 'C:/OpenSSL/lib/' -lcrypto -lssl \ -I 'C:/OpenSSL/include/' \ -L 'C:/curl/lib' -lcurl \