diff options
| author | Per Larsson <[email protected]> | 2022-01-05 10:05:22 +0100 |
|---|---|---|
| committer | Per Larsson <[email protected]> | 2022-01-05 10:05:22 +0100 |
| commit | da1ebfbac38e37eab58873a3f1bd7ed75a46c188 (patch) | |
| tree | 385ce8bc8a311c46de675c3ae3df9c48a7572618 /zencore/xmake.lua | |
| parent | Support GC configuration from LUA. (diff) | |
| parent | Added a build of BLAKE3 for Mac (diff) | |
| download | zen-nightly.tar.xz zen-nightly.zip | |
Merge branch 'main' of https://github.com/EpicGames/zennightly
Diffstat (limited to 'zencore/xmake.lua')
| -rw-r--r-- | zencore/xmake.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/zencore/xmake.lua b/zencore/xmake.lua index 7475d7e1c..1af64f5c2 100644 --- a/zencore/xmake.lua +++ b/zencore/xmake.lua @@ -16,6 +16,11 @@ target('zencore') add_links("blake3") add_links("oo2corelinux64") add_syslinks("pthread") + elseif is_os("macosx") then + add_linkdirs("$(projectdir)/thirdparty/BLAKE3/lib/Mac_x64") + add_linkdirs("$(projectdir)/thirdparty/Oodle/lib/Mac_x64") + add_links("blake3") + add_links("oo2coremac64") end add_options("zentrace") add_packages( |