aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author George L. Albany <Megacake1234@gmail.com>2023-01-25 02:17:32 +0100
committer George L. Albany <Megacake1234@gmail.com>2023-01-25 02:17:32 +0100
commit6f24eab47e8ed3c5acca9b8ce7addfa4bf244d76 (patch)
tree4c2d7bec7e341ae5bfd2149a8bd9bed556aa1df9
parent5371a960c9f0665d7de594cc5e274db225620207 (diff)
fix(build): Correct broken MacOS build
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 50fa747..1f0703a 100644
--- a/SConstruct
+++ b/SConstruct
@@ -18,7 +18,7 @@ sources = Glob("extension/src/*.cpp")
if env["platform"] == "macos":
library = env.SharedLibrary(
- "game/bin/openvic2/libopenvic2.{}.{}.framework/libgdsummator.{}.{}".format(
+ "game/bin/openvic2/libopenvic2.{}.{}.framework/libopenvic2.{}.{}".format(
env["platform"], env["target"], env["platform"], env["target"]
),
source=sources,