mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-11-07 08:34:37 +01:00
5caa19240d
Depending on the OS the lib dir can vary, on Fedora for instance it is "${prefix}/lib64". Instead of hard-coding the directory name, let CMake fill this variable for us.
11 lines
263 B
PkgConfig
11 lines
263 B
PkgConfig
prefix=@CMAKE_INSTALL_PREFIX@
|
|
exec_prefix=${prefix}
|
|
libdir=@CMAKE_INSTALL_FULL_LIBDIR@
|
|
includedir=${prefix}/include
|
|
|
|
Name: whisper
|
|
Description: Port of OpenAI's Whisper model in C/C++
|
|
Version: @PROJECT_VERSION@
|
|
Libs: -L${libdir} -lwhisper
|
|
Cflags: -I${includedir}
|