From: johnson442 Date: Thu, 8 Jun 2023 07:02:48 +0000 (+0100) Subject: k-quants : add missing compile definition to CMakeLists (#1748) X-Git-Tag: gguf-v0.4.0~670 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=0035858273ebe0694926bf4414d279f3e1cd109d;p=pkg%2Fggml%2Fsources%2Fllama.cpp k-quants : add missing compile definition to CMakeLists (#1748) --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 456875f9..41f5bb73 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -229,6 +229,7 @@ endif() if (LLAMA_K_QUANTS) set(GGML_SOURCES_EXTRA ${GGML_SOURCES_EXTRA} k_quants.c k_quants.h) + add_compile_definitions(GGML_USE_K_QUANTS) endif() if (LLAMA_CLBLAST)