From d42dc9b943b9970e9e0c8d0ee0329e5672a3b9c5 Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Fri, 21 Aug 2026 12:57:22 +0800 Subject: [PATCH] try fix cmake --- vendor/hash/CMakeLists.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/vendor/hash/CMakeLists.txt b/vendor/hash/CMakeLists.txt index 2772cdc57..1ce3e56cf 100644 --- a/vendor/hash/CMakeLists.txt +++ b/vendor/hash/CMakeLists.txt @@ -5,8 +5,6 @@ if (COMMAND llama_add_compile_flags) endif() set(VENDOR_SRCS - xxhash/xxhash.c - sha1/sha1.c sha256/sha256.c ) @@ -27,8 +25,5 @@ else() endif() set_source_files_properties(${VENDOR_SRCS} PROPERTIES COMPILE_OPTIONS ${NO_WARN_FLAG}) -# sha1 lives in a namespace to avoid a clash with boringssl, see scripts/sync_vendor.py -set_source_files_properties(sha1/sha1.c PROPERTIES LANGUAGE CXX) - # sha256.c includes "rotate-bits/rotate-bits.h", so consumers get this dir too target_include_directories(${TARGET} PUBLIC .)