summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorAndy Tai <andy-tai@users.noreply.github.com>2024-06-03 01:06:24 -0700
committerGitHub <noreply@github.com>2024-06-03 11:06:24 +0300
commita10cda58d3199cd85305e0f03a8c6056714ae2e8 (patch)
treeda1db17a26b8ff961aa11c810942bd273bc2fae1 /CMakeLists.txt
parent6f28a333c1e3fdfdc7b4f9d0367f2b41a9b7e9d4 (diff)
cmake : add pkg-config spec file for llama.cpp (#7702)
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a9b33eaa..0f07f9a5 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1373,6 +1373,13 @@ if (LLAMA_METAL)
endif()
endif()
+configure_file(cmake/llama.pc.in
+ "${CMAKE_CURRENT_BINARY_DIR}/llama.pc"
+ @ONLY)
+
+install(FILES "${CMAKE_CURRENT_BINARY_DIR}/llama.pc"
+ DESTINATION lib/pkgconfig)
+
#
# programs, examples and tests
#