Hello Antonio,
Thank you! It solves my problem.
(I don't know how to execute .yml files, but it is readable that I
can do it manually using command line.)
For those who are looking for the same question, here are the steps
I did in accordance with
https://github.com/FiveTechSoft/Harbour_builder, using MSVC32.
(The question "how to build hbssl.lib using MSVC?" has been answered
with superset info "how to build Harbour and its contribs")
0. Download Harbour source
1. Download OpenSSL (required by hbssl)
a.
https://bitbucket.org/lorenzodla/mod_harbour_actions_resources/downloads/OpenSSL-Win32.zip
b. extract the contents into c:\OpenSSL
2. Download cUrl (required by hbcurl)
a. https://bitbucket.org/lorenzodla/mod_harbour_actions_resources/downloads/curl-7.54.0-win32-mingw.zip
b. extract the contents into
c:\curl
3. execute win-make after setting environment vars properly
cd harbour
call "C:\Program Files (x86)\Microsoft Visual
Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
set HB_BUILD_MODE=c
set HB_USER_PRGFLAGS=-l-
set HB_BUILD_CONTRIBS=
set HB_WITH_OPENSSL=C:\OpenSSL\include
set HB_WITH_CURL=C:\curl\include
set HB_STATIC_OPENSSL=yes
set HB_STATIC_CURL=yes
set HB_COMPILER=msvc
win-make.exe
This will make Harbour and all its contribs.
thanks and regards,
budyanto