From 511f2c0b8c92fc4cd57ea1151e37e00e6f8a2210 Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Tue, 29 Nov 2022 17:43:22 +0100 Subject: [PATCH 1/2] attempt to fix missing crypt32 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index dc71cc25..e2651c5d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -97,7 +97,7 @@ endif() if(MSVC) add_definitions("/D_CRT_SECURE_NO_WARNINGS /D_WIN32_WINNT=0x0600 /DWIN32_LEAN_AND_MEAN /DGTEST_HAS_TR1_TUPLE=0 /D__SSE4_1__") add_compile_options(/bigobj /Zm1000 /Z7 /MP2 /W3 /GS- /wd4996 /wd4503 /wd4345 /wd4091 /FIinline_c.h) - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /STACK:10485760 /DEBUG dbghelp.lib") + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /STACK:10485760 /DEBUG dbghelp.lib crypt32.lib") if(STATIC) foreach(VAR CMAKE_C_FLAGS_DEBUG CMAKE_CXX_FLAGS_DEBUG CMAKE_C_FLAGS_RELEASE CMAKE_CXX_FLAGS_RELEASE) string(REPLACE "/MD" "/MT" ${VAR} "${${VAR}}") From 48f4886d0d3a4bd144744d47aedab61534e8db8f Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Tue, 29 Nov 2022 18:50:10 +0100 Subject: [PATCH 2/2] disabled code signing due to problems with cert(will be fixed later) --- utils/build_script_windows.bat | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/utils/build_script_windows.bat b/utils/build_script_windows.bat index b5a1451d..7a80b8aa 100644 --- a/utils/build_script_windows.bat +++ b/utils/build_script_windows.bat @@ -170,11 +170,11 @@ set installer_path=%BUILDS_PATH%\builds\%installer_file% @echo " SIGNING ...." -%ZANO_SIGN_CMD% %installer_path% -IF %ERRORLEVEL% NEQ 0 ( - @echo "failed to sign installer" - goto error -) +#%ZANO_SIGN_CMD% %installer_path% +#IF %ERRORLEVEL% NEQ 0 ( +# @echo "failed to sign installer" +# goto error +#) @echo " UPLOADING TO SERVER ...."