-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.toml
More file actions
13 lines (12 loc) · 783 Bytes
/
extension.toml
File metadata and controls
13 lines (12 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
[configuration]
entry_symbol = "gdext_rust_init"
compatibility_minimum = 4.1
[libraries]
linux.debug.x86_64 = "res://{{project-name}}/target/debug/lib{{crate_name}}.so"
linux.release.x86_64 = "res://{{project-name}}/target/release/lib{{crate_name}}.so"
windows.debug.x86_64 = "res://{{project-name}}/target/debug/{{crate_name}}.dll"
windows.release.x86_64 = "res://{{project-name}}/target/release/{{crate_name}}.dll"
macos.debug = "res://{{project-name}}/target/debug/lib{{crate_name}}.dylib"
macos.release = "res://{{project-name}}/target/release/lib{{crate_name}}.dylib"
macos.debug.arm64 = "res://{{project-name}}/target/aarch64-apple-darwin/debug/lib{{crate_name}}.dylib"
macos.release.arm64 = "res://{{project-name}}/target/aarch64-apple-darwin/release/lib{{crate_name}}.dylib"