Initial commit, still needs actual main.rs code

This commit is contained in:
Bradlee Speice
2018-01-16 18:37:15 -05:00
commit d2d09dd976
6 changed files with 62 additions and 0 deletions

8
build.rs Normal file
View File

@ -0,0 +1,8 @@
extern crate capnpc;
fn main() {
::capnpc::CompilerCommand::new()
.src_prefix("schema")
.file("schema/point.capnp")
.run().expect("compiling schema");
}