From 7ff45eacde5dc330b6aaf46fdc0dfad6a9d6611d Mon Sep 17 00:00:00 2001 From: Mathieu Schroeter Date: Sun, 25 Jun 2023 15:37:52 +0200 Subject: [PATCH] Fix missing sha256 for win signature --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a07bf0b..645bd28 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -414,7 +414,7 @@ if ("${CMAKE_BUILD_TYPE}" STREQUAL "Release" AND "${STATIC_BUILD}") add_custom_command (TARGET planetblupi POST_BUILD COMMAND ${SIGNTOOL_EXECUTABLE} - sign -a -fd sha1 -t http://time.certum.pl + sign -a -fd sha256 -t http://time.certum.pl "${CMAKE_BINARY_DIR}/${INSTALLER_FILE_NAME}.exe") endif () elseif (APPLE)