aboutsummaryrefslogtreecommitdiff
path: root/examples/embedding
diff options
context:
space:
mode:
authorMarco Matthies <71844+marcom@users.noreply.github.com>2023-03-27 06:55:26 +0200
committerGitHub <noreply@github.com>2023-03-27 07:55:26 +0300
commit7e5395575a3360598f2565c73c8a2ec0c0abbdb8 (patch)
tree046883c6ef4b201b7da0c3945155577cbf13e65e /examples/embedding
parent34c1072e497eb92d81ee7c0e12aa6741496a41c6 (diff)
Fix missing ggml link in cmake for examples/* on w64-mingw32 (#542)
Diffstat (limited to 'examples/embedding')
-rw-r--r--examples/embedding/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/embedding/CMakeLists.txt b/examples/embedding/CMakeLists.txt
index 88c425d..def5b83 100644
--- a/examples/embedding/CMakeLists.txt
+++ b/examples/embedding/CMakeLists.txt
@@ -1,4 +1,4 @@
set(TARGET embedding)
add_executable(${TARGET} embedding.cpp)
-target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
+target_link_libraries(${TARGET} PRIVATE common llama ggml ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_11)