We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d4d2be commit c0d4843Copy full SHA for c0d4843
CMakeLists.txt
@@ -233,4 +233,4 @@ configure_file(cmake/llama.pc.in
233
@ONLY)
234
235
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/llama.pc"
236
- DESTINATION lib/pkgconfig)
+ DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
cmake/llama.pc.in
@@ -1,10 +1,10 @@
1
prefix=@CMAKE_INSTALL_PREFIX@
2
-exec_prefix=${prefix}
3
-libdir=${exec_prefix}/lib
4
-includedir=${prefix}/include
+exec_prefix=@CMAKE_INSTALL_PREFIX@
+libdir=@CMAKE_INSTALL_FULL_LIBDIR@
+includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@
5
6
Name: llama
7
Description: Port of Facebook's LLaMA model in C/C++
8
-Version: @PROJECT_VERSION@
9
-Libs: -L${libdir} -lggml -lggml-base -lllama
+Version: @LLAMA_INSTALL_VERSION@
+Libs: -L${libdir} -lggml -lggml-base -lllama
10
Cflags: -I${includedir}
0 commit comments