Skip to content

Commit 9077af5

Browse files
authored
Update README.md
1 parent b2f00d4 commit 9077af5

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,24 @@ Help me to improve this project!
1717
Compile and link manually
1818
=========================
1919

20-
Standalone
20+
Standalone (static library)
2121
----------
2222

2323
```bash
2424
cd build
2525
cmake ..
26-
make # -j2
26+
make
2727
```
2828

29+
Standalone (dynamic/shared library)
30+
----------
31+
32+
```bash
33+
cd build
34+
cmake .. -DBUILD_SHARED_LIBS=SHARED
35+
make
36+
37+
2938
**Note:** cURL >= 7.28.0 is required.
3039

3140
When linking curlcpp to your application don't forget to also link `curl`. Example:

0 commit comments

Comments
 (0)