We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2f00d4 commit 9077af5Copy full SHA for 9077af5
README.md
@@ -17,15 +17,24 @@ Help me to improve this project!
17
Compile and link manually
18
=========================
19
20
-Standalone
+Standalone (static library)
21
----------
22
23
```bash
24
cd build
25
cmake ..
26
-make # -j2
+make
27
```
28
29
+Standalone (dynamic/shared library)
30
+----------
31
+
32
+```bash
33
+cd build
34
+cmake .. -DBUILD_SHARED_LIBS=SHARED
35
36
37
38
**Note:** cURL >= 7.28.0 is required.
39
40
When linking curlcpp to your application don't forget to also link `curl`. Example:
0 commit comments