Skip to content

Commit

Permalink
fixed scons compile path
Browse files Browse the repository at this point in the history
  • Loading branch information
zodywoolsey committed Aug 22, 2024
1 parent fa39a3e commit 78bfef7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ sources = Glob("src/*.cpp")

if env["platform"] == "macos":
library = env.SharedLibrary(
"gdextensiontest/bin/libgdopusencoder.{}.{}.framework/libgdopusencoder.{}.{}".format(
"gdextensiontest/addons/gdopus/libgdopusencoder.{}.{}.framework/libgdopusencoder.{}.{}".format(
env["platform"], env["target"], env["platform"], env["target"]
),
source=sources,
)
else:
library = env.SharedLibrary(
"gdextensiontest/bin/libgdopusencoder{}{}".format(env["suffix"], env["SHLIBSUFFIX"]),
"gdextensiontest/addons/gdopus/libgdopusencoder{}{}".format(env["suffix"], env["SHLIBSUFFIX"]),
source=sources,
)

Expand Down

0 comments on commit 78bfef7

Please sign in to comment.