summaryrefslogtreecommitdiff
path: root/plugins/hello_gdextension/SConstruct
diff options
context:
space:
mode:
authorFredia Huya-Kouadio <fhuya@meta.com>2023-10-08 15:02:59 -0700
committerFredia Huya-Kouadio <fhuya@meta.com>2023-10-08 15:02:59 -0700
commitcb57f3f29f36bfaafa9f26140105dc16cd51a5a7 (patch)
tree364dd705b3f2f06255b3ac5e7d344176681a713e /plugins/hello_gdextension/SConstruct
parentd9fff97ae273807c8eab768847753f17b9ecda46 (diff)
downloadgodot-android-samples-cb57f3f29f36bfaafa9f26140105dc16cd51a5a7.tar.gz
godot-android-samples-cb57f3f29f36bfaafa9f26140105dc16cd51a5a7.tar.bz2
godot-android-samples-cb57f3f29f36bfaafa9f26140105dc16cd51a5a7.zip
Update the 'HelloGDExtension' plugin sample's directory structure
Diffstat (limited to 'plugins/hello_gdextension/SConstruct')
-rw-r--r--plugins/hello_gdextension/SConstruct4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/hello_gdextension/SConstruct b/plugins/hello_gdextension/SConstruct
index c704717..71e141e 100644
--- a/plugins/hello_gdextension/SConstruct
+++ b/plugins/hello_gdextension/SConstruct
@@ -18,12 +18,12 @@ sources = Glob("src/main/cpp/*.cpp")
if env["platform"] == "macos":
library = env.SharedLibrary(
- "src/main/assets/addons/hello_gdextension_plugin/.bin/libhello_gdextension.{}.{}.framework/libhello_gdextension.{}.{}".format(env["platform"], env["target"], env["platform"], env["target"]),
+ "demo/addons/hello_gdextension_plugin/bin/libhello_gdextension.{}.{}.framework/libhello_gdextension.{}.{}".format(env["platform"], env["target"], env["platform"], env["target"]),
source=sources,
)
else:
library = env.SharedLibrary(
- "src/main/assets/addons/hello_gdextension_plugin/.bin/libhello_gdextension{}{}".format(env["suffix"], env["SHLIBSUFFIX"]),
+ "demo/addons/hello_gdextension_plugin/bin/libhello_gdextension{}{}".format(env["suffix"], env["SHLIBSUFFIX"]),
source=sources,
)