burritos/build.rs
François Autin 8732a6f0b7
Added build.rs script
- Executes make all
 - Moves the project logo to the documentation folder
2023-04-21 14:28:30 +02:00

26 lines
706 B
Rust

//! Build script for BurritOS.
//!
//! Moves files from the assets folder to the target directory
//! and runs `make all`.
use std::process::Command;
fn main() {
let mut make_all = Command::new("make");
make_all.arg("all");
println!("{:?}", make_all.output().unwrap());
let mut create_target_folder = Command::new("mkdir");
create_target_folder.args([
"-p",
"target/doc/burritos/assets/"
]);
println!("{:?}", create_target_folder.output().unwrap());
let mut copy_logo = Command::new("cp");
copy_logo.args([
"assets/logo/logo.svg",
"target/doc/burritos/assets/logo.svg"
]);
println!("{:?}", copy_logo.output().unwrap());
}