mirror of
https://github.com/ggerganov/ggml
synced 2026-03-02 05:00:27 +01:00
CMake is installing public headers in CMAKE_INSTALL_INCLUDEDIR, not CMAKE_INSTALL_INCLUDEDIR/ggml. This patch fixes building external programs which use 'pkg-config --cflags ggml'
11 lines
274 B
PkgConfig
11 lines
274 B
PkgConfig
prefix=@CMAKE_INSTALL_PREFIX@
|
|
exec_prefix=${prefix}
|
|
includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@
|
|
libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@
|
|
|
|
Name: ggml
|
|
Description: The GGML Tensor Library for Machine Learning
|
|
Version: 0.0.0
|
|
Cflags: -I${includedir}
|
|
Libs: -L${libdir} -lggml
|