5ef9c2a503
Instead of hardcoding 0.0.0 If the 0.9.2-dev version is supposed to mean "less than" 0.9.2 instead of equal, then the .pc version format would need to be changed to 0.9.2dev, since pkgconf uses RPM version comparison. But let's keep it simple for now. The version in CMake was added in #1336
11 lines
283 B
Plaintext
11 lines
283 B
Plaintext
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: @GGML_VERSION@
|
|
Cflags: -I${includedir}
|
|
Libs: -L${libdir} -lggml
|