From cee25a3be75206926eea06fe34eaf98f8010f290 Mon Sep 17 00:00:00 2001 From: Nathanael Jones Date: Wed, 27 Apr 2016 10:25:43 -0600 Subject: [PATCH] Add build instructions --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 11cf6d2..a9d9fa8 100644 --- a/README.md +++ b/README.md @@ -38,3 +38,16 @@ Otherwise, you can specify the path to the c plugin: `capnp` generates a C struct that corresponds to each capn proto struct, along with read/write functions that convert to/from capn proto form. TBD whether it will make sense in the future to provide accessor functions for struct members, rather than converting entire structs. + +## building on linux + +``` +git clone https://github.com/opensourcerouting/c-capnproto +cd c-capnproto +git submodule update --init --recursive +autoreconf -f -i -s +./configure +make +make check +``` +