diff options
| author | Martin Ridgers <[email protected]> | 2023-01-30 09:49:21 +0100 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2023-02-02 14:55:14 +0100 |
| commit | 48fd13c2b94522789466a90bd18751b45af6dd0b (patch) | |
| tree | 311b0881446fcd524e9f7b4b8b038564eacba039 /zencore/xmake.lua | |
| parent | Call gettid syscall directly as gettid() is not available in earlier glibc (diff) | |
| download | zen-48fd13c2b94522789466a90bd18751b45af6dd0b.tar.xz zen-48fd13c2b94522789466a90bd18751b45af6dd0b.zip | |
Removed unused add_link() call
The blake3 library is now provided by vcpkg and marked as a dependency
via the add_package() call.
Diffstat (limited to 'zencore/xmake.lua')
| -rw-r--r-- | zencore/xmake.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/zencore/xmake.lua b/zencore/xmake.lua index aae20274b..61000f739 100644 --- a/zencore/xmake.lua +++ b/zencore/xmake.lua @@ -14,7 +14,6 @@ target('zencore') add_includedirs("include", {public=true}) add_includedirs("$(projectdir)/thirdparty/utfcpp/source") add_includedirs("$(projectdir)/thirdparty/trace", {public=true}) - add_links("blake3") if is_os("windows") then add_linkdirs("$(projectdir)/thirdparty/Oodle/lib/Win64") elseif is_os("linux") then |