mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-04-19 02:24:03 +03:00
Try to find GSSAPI via pkg-config. If found, add the appropriate module name, depending on the flavor, to the libssh.pc file so that the pkg-config can report the list of libraries needed when linking against the static library version of libssh. Fix #293 Signed-off-by: John Thacker <johnthacker@gmail.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org> Reviewed-by: Jakub Jelen <jjelen@redhat.com>
12 lines
303 B
CMake
12 lines
303 B
CMake
prefix=@CMAKE_INSTALL_PREFIX@
|
|
exec_prefix=${prefix}
|
|
libdir=@CMAKE_INSTALL_FULL_LIBDIR@
|
|
includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@
|
|
|
|
Name: @PROJECT_NAME@
|
|
Description: The SSH Library
|
|
Version: @PROJECT_VERSION@
|
|
Libs: -L${libdir} -lssh
|
|
Cflags: -I${includedir}
|
|
Requires.private: @LIBSSH_PC_REQUIRES_PRIVATE@
|