diff options
author | Marco Matthies <71844+marcom@users.noreply.github.com> | 2023-03-27 06:55:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-27 07:55:26 +0300 |
commit | 7e5395575a3360598f2565c73c8a2ec0c0abbdb8 (patch) | |
tree | 046883c6ef4b201b7da0c3945155577cbf13e65e /examples/quantize | |
parent | 34c1072e497eb92d81ee7c0e12aa6741496a41c6 (diff) |
Fix missing ggml link in cmake for examples/* on w64-mingw32 (#542)
Diffstat (limited to 'examples/quantize')
-rw-r--r-- | examples/quantize/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/quantize/CMakeLists.txt b/examples/quantize/CMakeLists.txt index fb27d45..17a995b 100644 --- a/examples/quantize/CMakeLists.txt +++ b/examples/quantize/CMakeLists.txt @@ -1,4 +1,4 @@ set(TARGET quantize) add_executable(${TARGET} quantize.cpp) -target_link_libraries(${TARGET} PRIVATE llama ${CMAKE_THREAD_LIBS_INIT}) +target_link_libraries(${TARGET} PRIVATE llama ggml ${CMAKE_THREAD_LIBS_INIT}) target_compile_features(${TARGET} PRIVATE cxx_std_11) |