aboutsummaryrefslogtreecommitdiff
path: root/zencore/xmake.lua
diff options
context:
space:
mode:
authorMartin Ridgers <[email protected]>2021-11-12 08:49:46 +0100
committerMartin Ridgers <[email protected]>2021-11-12 08:57:06 +0100
commit24f2bbd24840c1ac70804c2324fc05cd77e344ea (patch)
tree2c87aeb6e67686486ebc783fb49cdd07e7e26bea /zencore/xmake.lua
parentAdded Curl's vcpkg:openssl dependency to xmake scripts (diff)
downloadzen-24f2bbd24840c1ac70804c2324fc05cd77e344ea.tar.xz
zen-24f2bbd24840c1ac70804c2324fc05cd77e344ea.zip
Use add_syslinks() instead of add_link() for system libraries
Diffstat (limited to 'zencore/xmake.lua')
-rw-r--r--zencore/xmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/zencore/xmake.lua b/zencore/xmake.lua
index d53a2758a..646d8dbd5 100644
--- a/zencore/xmake.lua
+++ b/zencore/xmake.lua
@@ -11,7 +11,7 @@ target('zencore')
add_linkdirs("$(projectdir)/thirdparty/Oodle/lib/Linux_x64")
add_links("blake3")
add_links("oo2corelinux64")
- add_links("pthread")
+ add_syslinks("pthread")
end
add_packages(
"vcpkg::spdlog",