Search code examples
delphidlldelphi-2010libcurlstatic-linking

Using Curl in Delphi without the DLL


I have a Delphi program in which I need to use Curl, but I do not want to redistribute the curl DLL with it (and I don't want to add the DLL as a resource and write it to a file at runtime and do it that way). With the Curlpas library, you have to use the DLL. Is there any way to use Curl with Delphi in the same way you can do it in C++, with the static library?


Solution

  • Curl's static library cannot be used in Delphi.