summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjacobkeeler <jacob.keeler@livioradio.com>2017-07-25 12:33:17 -0400
committerjacobkeeler <jacob.keeler@livioradio.com>2017-07-25 12:33:17 -0400
commit60707ab4ce9f50b25b980a8485b55807b3cc6f6e (patch)
tree46269ba00d84407f747ceef56675277c780b1a54
parentc39bb5becd1e37530c4f8fea54b23d563620f3ef (diff)
downloadsdl_core-60707ab4ce9f50b25b980a8485b55807b3cc6f6e.tar.gz
Update BSON lib README
-rw-r--r--src/3rd_party/bson_c_lib/README.md36
1 files changed, 8 insertions, 28 deletions
diff --git a/src/3rd_party/bson_c_lib/README.md b/src/3rd_party/bson_c_lib/README.md
index 81a2887b5d..7fb06298d4 100644
--- a/src/3rd_party/bson_c_lib/README.md
+++ b/src/3rd_party/bson_c_lib/README.md
@@ -6,34 +6,14 @@ Library for converting to and from BSON
make
```
-## Build and run sample program ##
+## Install library ##
```bash
-make sample
-LD_LIBRARY_PATH=. ./sample
+sudo make install
```
-### What is this repository for? ###
-
-* Quick summary
-* Version
-* [Learn Markdown](https://bitbucket.org/tutorials/markdowndemo)
-
-### How do I get set up? ###
-
-* Summary of set up
-* Configuration
-* Dependencies
-* Database configuration
-* How to run tests
-* Deployment instructions
-
-### Contribution guidelines ###
-
-* Writing tests
-* Code review
-* Other guidelines
-
-### Who do I talk to? ###
-
-* Repo owner or admin
-* Other community or team contact \ No newline at end of file
+## Build and run sample program ##
+```bash
+cd examples
+gcc -o sample sample.c -lbson -lemhashmap
+./sample
+```