mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-07-26 17:30:09 +00:00
14 lines
407 B
C
14 lines
407 B
C
// Copyright (c) 2025 Epic Games Tools
|
|
// Licensed under the MIT license (https://opensource.org/license/mit/)
|
|
|
|
#include "../third_party_ext/blake3/blake3_portable.c"
|
|
|
|
#if defined(__aarch64__) || defined(_M_ARM64)
|
|
#include "../third_party_ext/blake3/blake3_neon.c"
|
|
#endif
|
|
|
|
#include "../third_party_ext/blake3/blake3_dispatch.c"
|
|
#include "../third_party_ext/blake3/blake3.c"
|
|
|
|
#pragma comment (lib, "blake3")
|