8282c7dd50
* btree map serializer * serde tests * state diff serialization * basic layout * more missing serializaers * uncle returns rlp * block queue info * sorting with transaction result * sorting out util imports * transaction import result sorting also * sorting filters & ranges * error sorting out * deriving ipc service compiling * rpc & sync recompile * sorting rpc using uncles * fix compilation * fix merging bugs * fix unused imports * fix all warnings * tests stub * some merge bugs * ethcore compilation * fix rpc compilation * deriving attribute * tests (and fixes) * rpc test working * fix warnings again * rs.in -> rs * missing attribute * refactored tree changes * paste reformat mess fix * pub mod actually * intendation fix
48 lines
1.6 KiB
Rust
48 lines
1.6 KiB
Rust
// Copyright 2015, 2016 Ethcore (UK) Ltd.
|
|
// This file is part of Parity.
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
extern crate syntex;
|
|
extern crate ethcore_ipc_codegen as codegen;
|
|
|
|
use std::env;
|
|
use std::path::Path;
|
|
|
|
fn main() {
|
|
let out_dir = env::var_os("OUT_DIR").unwrap();
|
|
// serialization pass
|
|
{
|
|
let src = Path::new("src/types/mod.rs.in");
|
|
let dst = Path::new(&out_dir).join("types.rs");
|
|
let mut registry = syntex::Registry::new();
|
|
codegen::register(&mut registry);
|
|
registry.expand("", &src, &dst).unwrap();
|
|
}
|
|
|
|
// client interface
|
|
{
|
|
let src = Path::new("src/client/client.rs");
|
|
let intermediate = Path::new(&out_dir).join("client.intermediate.rs.in");
|
|
let mut registry = syntex::Registry::new();
|
|
codegen::register(&mut registry);
|
|
registry.expand("", &src, &intermediate).unwrap();
|
|
|
|
let dst = Path::new(&out_dir).join("client.ipc.rs");
|
|
let mut registry = syntex::Registry::new();
|
|
codegen::register(&mut registry);
|
|
registry.expand("", &intermediate, &dst).unwrap();
|
|
}
|
|
}
|