buildscriptfile_gen

A Rust library which encapsulates convenience methods to generate files via build scripts and include their content within source files during build time.

  1. In build.rs (build script) do,

``` extern crate buildscriptfilegen; use buildscriptfilegen::genfilestr;

fn main() { let stringcontent = "Hello World!"; genfilestr("hello.txt", &stringcontent);

//or

let rust_code = r#"println!("Hello World!");"#;
gen_file_str("hello.rs", &rust_code);

} ```

  1. In your module do,

```

[macro_use]

extern crate buildscriptfile_gen;

fn main() { //hello.txt contains the text: Hello World!; //which will make this function print Hello World! when compiled println!(includefilestr!("hello.txt"));

//or

//hello.rs contains the text: println!("Hello World!");
//which will make this function print Hello World! when compiled
include_file!("hello.rs");

} ```