diff options
| author | Stefan Boberg <[email protected]> | 2022-09-20 17:28:41 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-09-20 17:28:41 +0200 |
| commit | a735967c7c54fcecbfd9760286afc06a3b48233a (patch) | |
| tree | 4789717b7a05c7122cb366d3bcf5810db9678058 /zencore/blake3.cpp | |
| parent | rename URI chunk requests from value -> chunk (#166) (diff) | |
| download | zen-a735967c7c54fcecbfd9760286afc06a3b48233a.tar.xz zen-a735967c7c54fcecbfd9760286afc06a3b48233a.zip | |
Use BLAKE3 port from vcpkg (#141)
use BLAKE3 port from vcpkg instead of in-tree binaries
Diffstat (limited to 'zencore/blake3.cpp')
| -rw-r--r-- | zencore/blake3.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/zencore/blake3.cpp b/zencore/blake3.cpp index 02d6eb241..89826ae5d 100644 --- a/zencore/blake3.cpp +++ b/zencore/blake3.cpp @@ -7,13 +7,10 @@ #include <zencore/testing.h> #include <zencore/zencore.h> -#include "../thirdparty/BLAKE3/c/blake3.h" -#if ZEN_PLATFORM_WINDOWS -# pragma comment(lib, "blake3.lib") -#endif - #include <string.h> +#include "blake3.h" + ////////////////////////////////////////////////////////////////////////// namespace zen { |