From e88fa26f7a8ab052e77df10523d3c29ddf804863 Mon Sep 17 00:00:00 2001 From: Takatoshi Kondo Date: Mon, 10 Aug 2020 13:56:15 +0900 Subject: [PATCH] Added boost dependency to README.md. --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e66c3bf5..15f9b429 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,11 @@ int main() See [`QUICKSTART-CPP.md`](./QUICKSTART-CPP.md) for more details. +Dependency +----- +msgpack-c requires [boost library](https://www.boost.org/). +msgpack-c depends on only boost headers. You don't need to link boost libraries. + Usage ----- @@ -71,7 +76,8 @@ Usage When you use msgpack on C++, you can just add msgpack-c/include to your include path: - g++ -I msgpack-c/include your_source_file.cpp + g++ -I msgpack-c/include -I path_to_boost your_source_file.cpp + ### Building and Installing