Statically link against Curl lib

how I can instruct Curl to link statically

You mean how to build cURL as a static library? By default it seems to build as a dynamic/SHARED library, so you’ll need to set the configuration option to build a static variant too (or instead of) and then link to CURL::libcurl_static target instead of CURL::libcurl_shared.

1 Like