Skip to content

Commit ed17272

Browse files
Merge #186
186: Fix library paths in example project's .gdextension file r=Bromeon a=BroderickCarlin The example `dodge-the-creeps` appears to use still an old format for its `.gdextension` file. This has caused numerous people, myself included, to hit issues when attempting to set up their own projects. This PR updates the file to the most recent format Co-authored-by: Broderick Carlin <[email protected]>
2 parents 1b01e45 + 9a81c14 commit ed17272

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

examples/dodge-the-creeps/godot/DodgeTheCreeps.gdextension

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
entry_symbol = "gdext_rust_init"
33

44
[libraries]
5-
linux.64 = "res://../../../target/debug/libdodge_the_creeps.so"
6-
macos.64 = "res://../../../target/debug/libdodge_the_creeps.dylib"
7-
windows.64 = "res://../../../target/debug/dodge_the_creeps.dll"
5+
linux.debug.x86_64 = "res://../../../target/debug/libdodge_the_creeps.so"
6+
linux.release.x86_64 = "res://../../../target/release/libdodge_the_creeps.so"
7+
macos.debug = "res://../../../target/debug/libdodge_the_creeps.dylib"
8+
macos.release = "res://../../../target/release/libdodge_the_creeps.dylib"
9+
windows.debug.x86_64 = "res://../../../target/debug/dodge_the_creeps.dll"
10+
windows.release.x86_64 = "res://../../../target/release/dodge_the_creeps.dll"

0 commit comments

Comments
 (0)