diff options
| author | Stefan Boberg <[email protected]> | 2025-10-24 20:33:59 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2025-10-24 20:33:59 +0200 |
| commit | 288de83295b8d6fc1d43329084251329149fc170 (patch) | |
| tree | 37bc87d12dabb290dcd4ed989a1cc1ee8dc55208 | |
| parent | add some Windows flags (diff) | |
| download | zen-288de83295b8d6fc1d43329084251329149fc170.tar.xz zen-288de83295b8d6fc1d43329084251329149fc170.zip | |
add blake3 include path
| -rw-r--r-- | thirdparty/xmake.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/thirdparty/xmake.lua b/thirdparty/xmake.lua index 5e4d9435d..f3abeb3b1 100644 --- a/thirdparty/xmake.lua +++ b/thirdparty/xmake.lua @@ -88,6 +88,7 @@ target("blake3") set_kind("static") add_files("blake3/c/blake3.c", "blake3/c/blake3_dispatch.c", "blake3/c/blake3_portable.c") add_headerfiles("blake3/c/blake3.h") + add_includedirs("blake3/c", {public=true}) if is_os("windows") then add_cflags("/experimental:c11atomics") |