bt

Simple tool to use in build script.


Keywords
build, buildscript
License
Apache-2.0

Documentation

bt.rs

Simple build script tools.

Usage

use std::process::Command;
use bt::*;

fn main() {
	// this will print log.
	cmd("cmake", |ref mut cmd| {
		cmd
			.arg("--build").arg(".")
			.arg("--target").arg("install")
			.current_dir(&Path::new(&dst));
	});
}