Add full path to shared library installation path
This commit is contained in:
parent
146ca2c59f
commit
b025a859ae
1 changed files with 4 additions and 4 deletions
|
@ -25,9 +25,9 @@ else()
|
|||
add_subdirectory(vendor/llama.cpp)
|
||||
install(
|
||||
TARGETS llama
|
||||
LIBRARY DESTINATION llama_cpp
|
||||
RUNTIME DESTINATION llama_cpp
|
||||
ARCHIVE DESTINATION llama_cpp
|
||||
FRAMEWORK DESTINATION llama_cpp
|
||||
LIBRARY DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/llama_cpp
|
||||
RUNTIME DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/llama_cpp
|
||||
ARCHIVE DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/llama_cpp
|
||||
FRAMEWORK DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/llama_cpp
|
||||
)
|
||||
endif()
|
||||
|
|
Loading…
Reference in a new issue