https://github.com/copperlight/libcurl-multi-example
https://github.com/copperlight/libcurl-multi-example
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/copperlight/libcurl-multi-example
- Owner: copperlight
- License: apache-2.0
- Created: 2023-10-28T15:13:38.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-22T16:19:19.000Z (5 months ago)
- Last Synced: 2025-02-22T17:25:37.184Z (5 months ago)
- Language: C
- Size: 39.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Introduction
A small Conan/CMake scaffold project to build a variety of the [curl API Examples] C programs, and a couple of
variations thereof in C++, in order to explore how the [curl multi interface] works.[curl API Examples]: https://curl.se/libcurl/c/example.html
[curl multi interface]: https://curl.se/libcurl/c/libcurl-multi.html## Local Development
```shell
# install necessary build tools
brew install cmake# setup python venv and activate, to gain access to conan cli
./setup-venv.sh
source venv/bin/activate./build.sh # [clean|clean --confirm|skiptest]
# run the examples
./cmake-build/bin/10-at-a-time
./cmake-build/bin/crawler
```