How to compile curlpp on ubuntu?

后端 未结 1 665
长情又很酷
长情又很酷 2021-01-22 18:02

Below is a simple test.c code using curl:

#include 
#include 
int main(){        
    return 0;
}

To compile

相关标签:
1条回答
  • 2021-01-22 18:44

    You most likely forgot to install libcurlpp-dev.

    You can find out where the required header files are located by running:

    $ dpkg -S cURLpp.hpp
    libcurlpp-dev:amd64: /usr/include/curlpp/cURLpp.hpp
    
    0 讨论(0)
提交回复
热议问题