diff options
Diffstat (limited to 'plugins/hello_gdextension/SConstruct')
-rw-r--r-- | plugins/hello_gdextension/SConstruct | 4 |
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, ) |