diff options
| author | Martin Ridgers <[email protected]> | 2021-12-16 15:26:07 +0100 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2022-01-05 09:34:12 +0100 |
| commit | 2ac6c874a095cf8670833bcdd5e00369cc329908 (patch) | |
| tree | 2ece09a927440bc52da019d857ca78a51038fe00 | |
| parent | Oodle for Mac (diff) | |
| download | zen-2ac6c874a095cf8670833bcdd5e00369cc329908.tar.xz zen-2ac6c874a095cf8670833bcdd5e00369cc329908.zip | |
Added a build of BLAKE3 for Mac
| -rw-r--r-- | thirdparty/BLAKE3/lib/Mac_x64/libblake3.a | bin | 0 -> 78200 bytes | |||
| -rw-r--r-- | zencore/xmake.lua | 2 |
2 files changed, 2 insertions, 0 deletions
diff --git a/thirdparty/BLAKE3/lib/Mac_x64/libblake3.a b/thirdparty/BLAKE3/lib/Mac_x64/libblake3.a Binary files differnew file mode 100644 index 000000000..c2ed0276a --- /dev/null +++ b/thirdparty/BLAKE3/lib/Mac_x64/libblake3.a diff --git a/zencore/xmake.lua b/zencore/xmake.lua index 0d99f8dca..1af64f5c2 100644 --- a/zencore/xmake.lua +++ b/zencore/xmake.lua @@ -17,7 +17,9 @@ target('zencore') 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") |