Skip to content

Commit

Permalink
Update build.rs from Rust Port.
Browse files Browse the repository at this point in the history
  • Loading branch information
viferga authored Sep 25, 2024
1 parent 9dca44b commit fc1d577
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/ports/rs_port/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ fn main() {
// When building from Cargo
let profile = env::var("PROFILE").unwrap();
match profile.as_str() {
"debug" => {
println!("cargo:rustc-link-lib=dylib=metacalld");
}
"release" => {
// "debug" => {
// println!("cargo:rustc-link-lib=dylib=metacalld");
// }
"debug" | "release" => {
println!("cargo:rustc-link-lib=dylib=metacall")
}
_ => {
Expand Down

0 comments on commit fc1d577

Please sign in to comment.