I have been using libcurl to handle APIs in my c++ script which is a dll. I am struggling to include libcurl into my dll(meaning i want libcurl to be included into my dll after build, currently I am getting a separate dll for libcurl and another dll for my script. trying to avoid multiple dlls), Is there a way to do it.
Asked
Active
Viewed 215 times
0
-
2Does this answer your question? [using libcurl without dll](https://stackoverflow.com/questions/3411259/using-libcurl-without-dll) – Asesh Aug 30 '21 at 09:56
-
Did you statically build libcurl and of its dependencies? – drescherjm Aug 30 '21 at 12:24
-
This may help: [https://curl.se/mail/lib-2019-11/0078.html](https://curl.se/mail/lib-2019-11/0078.html) – drescherjm Aug 30 '21 at 12:37