From aadf0e6d23d5b7f86f12432a7c728ae6a86390b5 Mon Sep 17 00:00:00 2001 From: David Renshaw Date: Thu, 15 May 2014 22:53:49 -0400 Subject: [PATCH] add make command to README --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8381376..70112a5 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,9 @@ When you first build the project, try running `sbt update gen-idea`. This will b When running `make`, the supporting Java code will be built, and the sample schema will be run through the code generator as well to produce the Java binding. You can find the generated code in `/examples/src/main/generated/Addressbook.java` +Example of building and running from the command line: + ``` -echo '(people = [(id = 123, name = "Alice", email = "alice@example.com", employment = (school = "MIT"))])' | capnp encode examples/src/main/schema/addressbook.capnp AddressBook | java -cp generator/target/scala-2.11/classes:examples/target/scala-2.11/classes/ org.capnproto.examples.AddressbookMain read +$ make CXX_FLAGS="-std=c++11 -I/usr/local/include -L/usr/local/lib -lcapnp -lkj" +$ echo '(people = [(id = 123, name = "Alice", email = "alice@example.com", employment = (school = "MIT"))])' | capnp encode examples/src/main/schema/addressbook.capnp AddressBook | java -cp generator/target/scala-2.11/classes:examples/target/scala-2.11/classes/ org.capnproto.examples.AddressbookMain read ``` \ No newline at end of file