An open API service indexing awesome lists of open source software.

https://github.com/nobodyxu/curl-cpp

cpp wrapper for curl that supports -fno-exceptions and static linking.
https://github.com/nobodyxu/curl-cpp

cpp http-client libcurl-bindings network-programming

Last synced: 11 months ago
JSON representation

cpp wrapper for curl that supports -fno-exceptions and static linking.

Awesome Lists containing this project

README

          

# curl-cpp

![C/C++ CI](https://github.com/NobodyXu/curl-cpp/workflows/C/C++%20CI/badge.svg)

cpp wrapper for libcurl that support -fno-exceptions and static linking.

curl-cpp provides simple measures to test whether certain features is supported before any easy handle is created
(except for cookies support, which can only be detected when setting a cookie in easy handler).

[Document](https://nobodyxu.github.io/curl-cpp/index.html)
[Example](https://github.com/NobodyXu/curl-cpp/tree/master/example)

## How to build and statically link with this lib

```
git clone https://github.com/NobodyXu/curl-cpp.git
cd curl-cpp/
make
```

## How to build doc locally

```
cd curl-cpp/
make gendoc # This will give html, latex and man pages
```