diff options
| author | Martin Ridgers <[email protected]> | 2021-12-16 14:08:05 +0100 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2022-01-05 09:34:12 +0100 |
| commit | 4332e335bca7e6d7a9d5dd7d024958305b5fdb5d (patch) | |
| tree | c0001d5acb85978cd65bbff9024005383a62dd4f | |
| parent | CloneFile()'s unimplemented on Mac but shouldn't be a compile error (diff) | |
| download | zen-4332e335bca7e6d7a9d5dd7d024958305b5fdb5d.tar.xz zen-4332e335bca7e6d7a9d5dd7d024958305b5fdb5d.zip | |
Oodle for Mac
| -rwxr-xr-x | thirdparty/Oodle/lib/Mac_x64/liboo2coremac64.a | bin | 0 -> 10864632 bytes | |||
| -rw-r--r-- | zencore/xmake.lua | 3 |
2 files changed, 3 insertions, 0 deletions
diff --git a/thirdparty/Oodle/lib/Mac_x64/liboo2coremac64.a b/thirdparty/Oodle/lib/Mac_x64/liboo2coremac64.a Binary files differnew file mode 100755 index 000000000..0bcb1e6b9 --- /dev/null +++ b/thirdparty/Oodle/lib/Mac_x64/liboo2coremac64.a diff --git a/zencore/xmake.lua b/zencore/xmake.lua index 7475d7e1c..0d99f8dca 100644 --- a/zencore/xmake.lua +++ b/zencore/xmake.lua @@ -16,6 +16,9 @@ target('zencore') add_links("blake3") add_links("oo2corelinux64") add_syslinks("pthread") + elseif is_os("macosx") then + add_linkdirs("$(projectdir)/thirdparty/Oodle/lib/Mac_x64") + add_links("oo2coremac64") end add_options("zentrace") add_packages( |