From 88c23d04a85e03ce7d0fea1bf042d60ddcab7546 Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Thu, 6 Apr 2023 22:44:31 -0400 Subject: [PATCH] Fix windows dll location issue --- CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bcd026a..39ec507 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,4 +6,8 @@ set(BUILD_SHARED_LIBS "On") add_subdirectory(vendor/llama.cpp) -install(TARGETS llama LIBRARY DESTINATION "llama_cpp") \ No newline at end of file +install( + TARGETS llama + LIBRARY DESTINATION llama_cpp + RUNTIME DESTINATION llama_cpp +) \ No newline at end of file