summaryrefslogtreecommitdiff
path: root/src/3rd_party/bson_c_lib/README.md
blob: 7fb06298d47a643e4743de6053ac89706de155f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# README #
Library for converting to and from BSON

## Build library ##
```bash
make
```

## Install library ##
```bash
sudo make install
```

## Build and run sample program ##
```bash
cd examples
gcc -o sample sample.c -lbson -lemhashmap
./sample
```