bt

Crates.iobt
lib.rsbt
version0.1.0
sourcesrc
created_at2015-06-06 02:36:35.174233
updated_at2015-12-11 23:56:40.231265
descriptionSimple tool to use in build script.
homepagehttps://github.com/ceram1/bt.rs
repositoryhttps://github.com/ceram1/bt.rs.git
max_upload_size
id2313
size906
DongYun Kang (ceram1)

documentation

README

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));
	});
}

Commit count: 0

cargo fmt