Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
fix(macos): added extension module linker args
Browse files Browse the repository at this point in the history
This will hopefully fix the bugs we're getting on macOS.
  • Loading branch information
arctic-hen7 committed Mar 12, 2023
1 parent 32f2f49 commit 82b8a51
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ rust-version = "1.59"

[build-dependencies]
tauri-build = { version = "1.2.1", features = [] }
pyo3-build-config = "0.18"

[dependencies]
serde_json = "1.0"
Expand Down
3 changes: 2 additions & 1 deletion src-tauri/build.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
fn main() {
tauri_build::build()
pyo3_build_config::add_extension_module_link_args();
tauri_build::build()
}

0 comments on commit 82b8a51

Please sign in to comment.