You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
310 B
12 lines
310 B
8 years ago
|
use std::env;
|
||
|
|
||
|
fn main() {
|
||
|
let dkp_path = env::var("DEVKITPRO").unwrap();
|
||
|
|
||
|
println!("cargo:rustc-link-search=native={}/libctru/lib", dkp_path);
|
||
|
println!("cargo:rustc-link-lib=static={}", match env::var("PROFILE").unwrap().as_str() {
|
||
|
"debug" => "ctrud",
|
||
|
_ => "ctru",
|
||
|
});
|
||
|
}
|