Good evening! I've been trying to troubleshoot this for a few hours and can't seem to figure it out. So here's what I have so far:
- curl is installed, which puts libcurl.so in /usr/lib/ and curl.h (and the other headers) in /usr/include/curl
- I added /usr/include to Search Directories -> Compiler in the global compiler settings
- I added /usr/lib to Search Directories -> Linker in the global compiler settings
- I added /usr/include/curl to Search Directories -> Compiler in the project compiler settings
- I added /usr/lib/libcurl.so to Linker Settings -> Link Libraries in the project compiler settings
- I included <curl/curl.h>
- On Curl *curl; I get the error error: 'Curl' was not declared in this scope
Any insight as to what I'm doing wrong? Thanks in advance!