aboutsummaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
author Spartan322 <Megacake1234@gmail.com>2023-09-10 19:48:43 +0200
committer Spartan322 <Megacake1234@gmail.com>2023-09-10 19:49:01 +0200
commit8e53201660411690a0d8b91bea5723b1ffc8ba32 (patch)
tree6fe8ff032af64ca4ba4aabbf4629fdc99669acd6 /SConstruct
parentd35c0a023908972b86dfe71d81839674477b8105 (diff)
Fix library linkage issues
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct4
1 files changed, 1 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct
index 3128ebc..c7717be 100644
--- a/SConstruct
+++ b/SConstruct
@@ -249,7 +249,7 @@ if env["build_ovdl_library"]:
Default(library)
env.Append(LIBPATH=[env.Dir(BINDIR)])
- env.Append(LIBS=[library_name])
+ env.Prepend(LIBS=[library_name])
env.openvic_dataloader["LIBPATH"] = env["LIBPATH"]
env.openvic_dataloader["LIBS"] = env["LIBS"]
@@ -267,8 +267,6 @@ if env["build_ovdl_headless"]:
headless_env.headless_sources = GlobRecursive("*.cpp", headless_path)
if not env["build_ovdl_library"]:
headless_env.headless_sources += sources
- else:
- headless_env.headless_sources += env.lexy_sources
headless_program = headless_env.Program(
target=os.path.join(BINDIR, headless_name),
source=headless_env.headless_sources,