aboutsummaryrefslogtreecommitdiff
path: root/deps/SCsub
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 /deps/SCsub
parentd35c0a023908972b86dfe71d81839674477b8105 (diff)
Fix library linkage issues
Diffstat (limited to 'deps/SCsub')
-rw-r--r--deps/SCsub2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/SCsub b/deps/SCsub
index 1afe1a6..eb27dab 100644
--- a/deps/SCsub
+++ b/deps/SCsub
@@ -39,7 +39,7 @@ def build_lexy(env):
env.Append(CXXFLAGS=["-isystem", lexy_env.Dir("lexy/include")])
env.Append(CXXFLAGS=[""])
env.Append(LIBPATH=[lexy_env.Dir("lexy/src")])
- env.Append(LIBS=[library_name])
+ env.Prepend(LIBS=[library_name])
build_lexy(env) \ No newline at end of file