Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up
Find file
Copy path
Fetching contributors…
| extern crate quasi_codegen; | |
| use std::env; | |
| use std::path::Path; | |
| pub fn main() { | |
| let out_dir = env::var_os("OUT_DIR").unwrap(); | |
| let src = Path::new("tests/test.rs.in"); | |
| let dst = Path::new(&out_dir).join("test.rs"); | |
| quasi_codegen::expand(&src, &dst).unwrap(); | |
| } |