summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2023-08-17 10:48:22 +0200
committerA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2023-08-17 10:51:12 +0200
commite586e11637712b605bf6315bdb77fba6613da8ba (patch)
treef12f15bdf737fb9601de8a59606b0b60671bbb8b /README.md
parent7ed7a8478293c7bb743d20638908df9252ae50a7 (diff)
downloadredot-cpp-e586e11637712b605bf6315bdb77fba6613da8ba.tar.gz
Fix link to test project in readme
Also updated format for library paths
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index 4a0dcea..5c7c937 100644
--- a/README.md
+++ b/README.md
@@ -76,7 +76,7 @@ just like before.
To use the shared lib in your Godot project you'll need a `.gdextension`
file, which replaces what was the `.gdnlib` before.
-Follow [the example](test/demo/example.gdextension):
+Follow [the example](test/project/example.gdextension):
```ini
[configuration]
@@ -86,12 +86,12 @@ compatibility_minimum = 4.1
[libraries]
-macos.debug = "bin/libgdexample.macos.debug.framework"
-macos.release = "bin/libgdexample.macos.release.framework"
-windows.debug.x86_64 = "bin/libgdexample.windows.debug.x86_64.dll"
-windows.release.x86_64 = "bin/libgdexample.windows.release.x86_64.dll"
-linux.debug.x86_64 = "bin/libgdexample.linux.debug.x86_64.so"
-linux.release.x86_64 = "bin/libgdexample.linux.release.x86_64.so"
+macos.debug = "res://bin/libgdexample.macos.debug.framework"
+macos.release = "res://bin/libgdexample.macos.release.framework"
+windows.debug.x86_64 = "res://bin/libgdexample.windows.debug.x86_64.dll"
+windows.release.x86_64 = "res://bin/libgdexample.windows.release.x86_64.dll"
+linux.debug.x86_64 = "res://bin/libgdexample.linux.debug.x86_64.so"
+linux.release.x86_64 = "res://bin/libgdexample.linux.release.x86_64.so"
# Repeat for other architectures to support arm64, rv64, etc.
```