Skip to content

Commit

Permalink
Undiscriminate myself.
Browse files Browse the repository at this point in the history
  • Loading branch information
evetion committed May 16, 2024
1 parent c17d3c4 commit eca0fb3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build/cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ fn main() -> ExitCode {
let shared_lib_path = match OS {
"windows" => exe_dir.join("bin/libribasim.dll"),
"linux" => exe_dir.join("lib/libribasim.so"),
_ => unimplemented!(),
"macos" => exe_dir.join("lib/libribasim.dylib"),
_ => unimplemented!("Your OS is not supported yet."),
};
unsafe {
// Load the library
Expand Down

0 comments on commit eca0fb3

Please sign in to comment.