forked from M-Labs/artiq
bc22d1c009
The idea is that support libraries are called lib*, and the final products that linked into an executable are not.
7 lines
119 B
Rust
7 lines
119 B
Rust
extern crate build_artiq;
|
|
|
|
fn main() {
|
|
build_artiq::misoc_cfg();
|
|
println!("cargo:rustc-cfg={}", "ksupport");
|
|
}
|