Skip to content

Commit 8e9130a

Browse files
authored
Merge pull request #57 from jesusmb1995/jmb/build_dl18
QVAC-7519: Fix dynamic libs path with vcpkg install (issue during cached CI)
2 parents 07d286b + a406115 commit 8e9130a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ggml/src/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,8 +244,8 @@ function(ggml_add_backend_library backend)
244244
else()
245245
install(TARGETS ${backend}
246246
EXPORT ggml-targets
247-
LIBRARY DESTINATION ${CMAKE_BINARY_DIR}
248-
RUNTIME DESTINATION ${CMAKE_BINARY_DIR})
247+
LIBRARY DESTINATION ${CMAKE_INSTALL_BINDIR}
248+
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
249249
endif()
250250
else()
251251
add_library(${backend} ${ARGN})

0 commit comments

Comments
 (0)