From b333b06772c89d96aacb5490d6a219fba7c09cc6 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Thu, 12 Feb 2026 20:57:17 +0100 Subject: Engage! --- llama.cpp/pocs/CMakeLists.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 llama.cpp/pocs/CMakeLists.txt (limited to 'llama.cpp/pocs/CMakeLists.txt') diff --git a/llama.cpp/pocs/CMakeLists.txt b/llama.cpp/pocs/CMakeLists.txt new file mode 100644 index 0000000..d49d14d --- /dev/null +++ b/llama.cpp/pocs/CMakeLists.txt @@ -0,0 +1,14 @@ +# dependencies + +find_package(Threads REQUIRED) + +# third-party + +include_directories(${CMAKE_CURRENT_SOURCE_DIR}) + +if (EMSCRIPTEN) +else() + if (NOT GGML_BACKEND_DL) + add_subdirectory(vdot) + endif() +endif() -- cgit v1.2.3