From a10cda58d3199cd85305e0f03a8c6056714ae2e8 Mon Sep 17 00:00:00 2001 From: Andy Tai Date: Mon, 3 Jun 2024 01:06:24 -0700 Subject: cmake : add pkg-config spec file for llama.cpp (#7702) --- cmake/llama.pc.in | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 cmake/llama.pc.in (limited to 'cmake') diff --git a/cmake/llama.pc.in b/cmake/llama.pc.in new file mode 100644 index 00000000..326acbb6 --- /dev/null +++ b/cmake/llama.pc.in @@ -0,0 +1,10 @@ +prefix=@CMAKE_INSTALL_PREFIX@ +exec_prefix=${prefix} +libdir=${exec_prefix}/lib +includedir=${prefix}/include + +Name: llama +Description: Port of Facebook's LLaMA model in C/C++ +Version: @PROJECT_VERSION@ +Libs: -L${libdir} -lllama +Cflags: -I${includedir} -- cgit v1.2.3