artiq/artiq/firmware/ksupport/build.rs
whitequark bc22d1c009 firmware: libksupport → ksupport.
The idea is that support libraries are called lib*, and the final
products that linked into an executable are not.
2017-01-31 22:24:37 +00:00

7 lines
119 B
Rust

extern crate build_artiq;
fn main() {
build_artiq::misoc_cfg();
println!("cargo:rustc-cfg={}", "ksupport");
}