You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's no need to handle `libcurl` yourself. All dependencies are taken care of for you.
89
+
There's no need to handle `libcurl` yourself. All dependencies are taken care of for you.
90
90
All of this can be found in an example [**here**](https://github.com/libcpr/example-cmake-fetch-content).
91
91
92
92
#### find_package():
@@ -159,7 +159,7 @@ The only explicit requirements are:
159
159
* a `C++17` compatible compiler such as Clang or GCC. The minimum required version of GCC is unknown, so if anyone has trouble building this library with a specific version of GCC, do let us know
160
160
* in case you only have a `C++11` compatible compiler available, all versions below cpr 1.9.x are for you. The 1.10.0 release of cpr switches to `C++17` as a requirement.
161
161
* If you would like to perform https requests `OpenSSL` and its development libraries are required.
162
-
* If you do not use the build in version of [curl](https://github.com/curl/curl) but instead use your systems version, make sure you use a version `>= 7.64.0`. Lower versions are not supported. This means you need Debian `>= 10` or Ubuntu `>= 20.04 LTS`.
162
+
* If you do not use the built-in version of [curl](https://github.com/curl/curl) but instead use your systems version, make sure you use a version `>= 7.64.0`. Lower versions are not supported. This means you need Debian `>= 10` or Ubuntu `>= 20.04 LTS`.
163
163
164
164
### Building cpr - Using vcpkg
165
165
@@ -196,7 +196,7 @@ Now to make `cpr` available to the project, make a `subprojects` directory and i
196
196
meson wrap install cpr
197
197
```
198
198
199
-
It creates a meson wrap file in `subprojects/cpr.wrap`, with that we need to it as dependecy in the `meson.build` file:
199
+
This creates a meson wrap file in `subprojects/cpr.wrap`. We then need to add it as a dependency in the `meson.build` file:
0 commit comments