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.
- Host: GitHub
- URL: https://github.com/nobodyxu/curl-cpp
- Owner: NobodyXu
- License: mit
- Created: 2020-06-29T03:25:52.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-07T11:55:01.000Z (almost 6 years ago)
- Last Synced: 2025-03-25T02:17:39.078Z (over 1 year ago)
- Topics: cpp, http-client, libcurl-bindings, network-programming
- Language: C++
- Homepage:
- Size: 3.22 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# curl-cpp

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
```