From 451e9ee92c24a49134ba9b2c059da809c2402f98 Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Tue, 24 Sep 2024 14:15:09 +0300 Subject: [PATCH] make : remove "talk" target until updated --- Makefile | 2 +- examples/CMakeLists.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 807f98f8..8ef10f9a 100644 --- a/Makefile +++ b/Makefile @@ -141,8 +141,8 @@ else command \ stream \ lsp \ - talk \ talk-llama + # talk (TODO: disalbed) endif default: $(BUILD_TARGETS) diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 163f425f..33e6249e 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -102,8 +102,8 @@ if (EMSCRIPTEN) set_target_properties(libstream PROPERTIES FOLDER "libs") add_subdirectory(command.wasm) set_target_properties(libcommand PROPERTIES FOLDER "libs") - add_subdirectory(talk.wasm) - set_target_properties(libtalk PROPERTIES FOLDER "libs") + #add_subdirectory(talk.wasm) + #set_target_properties(libtalk PROPERTIES FOLDER "libs") add_subdirectory(bench.wasm) set_target_properties(libbench PROPERTIES FOLDER "libs") elseif(CMAKE_JS_VERSION)