Compare commits
No commits in common. "29bdeeed01c73905e863ab38d71d9372a2d4c31a" and "ccca5054602b9e8c76fc805441ddc2f6805dcb77" have entirely different histories.
29bdeeed01
...
ccca505460
3 changed files with 6 additions and 25 deletions
11
README.md
11
README.md
|
@ -1,11 +0,0 @@
|
|||
# Gd-Wireportal
|
||||
|
||||
This repo contains both a godot project for testing the gdextension
|
||||
and the Rust based extension
|
||||
|
||||
The extension itself is about bringing XDG Portals and Pipewire
|
||||
to Godot, initially just for screencapture.
|
||||
|
||||
For now, this extension is Linux only, as both XDG Portals and Pipewire
|
||||
only exist on Linux. If both, with their full API, are ever brought to
|
||||
Windows or MacOS, I will try to add support for them.
|
|
@ -6,3 +6,9 @@ reloadable = true
|
|||
[libraries]
|
||||
linux.debug.x86_64 = "res://../rust/target/debug/libgd_wireportal.so"
|
||||
linux.release.x86_64 = "res://../rust/target/release/libgd_wireportal.so"
|
||||
windows.debug.x86_64 = "res://../rust/target/debug/gd_wireportal.dll"
|
||||
windows.release.x86_64 = "res://../rust/target/release/gd_wireportal.dll"
|
||||
macos.debug = "res://../rust/target/debug/libgd_wireportal.dylib"
|
||||
macos.release = "res://../rust/target/release/libgd_wireportal.dylib"
|
||||
macos.debug.arm64 = "res://../rust/target/debug/libgd_wireportal.dylib"
|
||||
macos.release.arm64 = "res://../rust/target/release/libgd_wireportal.dylib"
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
[configuration]
|
||||
entry_symbol = "gdext_rust_init"
|
||||
compatibility_minimum = 4.1
|
||||
reloadable = true
|
||||
|
||||
[libraries]
|
||||
linux.debug.x86_64 = "res://../rust/target/debug/libgd_wireportal.so"
|
||||
linux.release.x86_64 = "res://../rust/target/release/libgd_wireportal.so"
|
||||
windows.debug.x86_64 = "res://../rust/target/debug/gd_wireportal.dll"
|
||||
windows.release.x86_64 = "res://../rust/target/release/gd_wireportal.dll"
|
||||
macos.debug = "res://../rust/target/debug/libgd_wireportal.dylib"
|
||||
macos.release = "res://../rust/target/release/libgd_wireportal.dylib"
|
||||
macos.debug.arm64 = "res://../rust/target/debug/libgd_wireportal.dylib"
|
||||
macos.release.arm64 = "res://../rust/target/release/libgd_wireportal.dylib"
|
Loading…
Reference in a new issue