We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0540502 + 0473abf commit 1a9a984Copy full SHA for 1a9a984
CMakeLists.txt
@@ -969,6 +969,7 @@ find_path(ZMQ_INCLUDE_PATH zmq.h)
969
find_library(ZMQ_LIB zmq)
970
find_library(PGM_LIBRARY pgm)
971
find_library(NORM_LIBRARY norm)
972
+find_library(GSSAPI_LIBRARY gssapi_krb5)
973
find_library(PROTOLIB_LIBRARY protolib)
974
find_library(SODIUM_LIBRARY sodium)
975
@@ -984,6 +985,9 @@ endif()
984
985
if(NORM_LIBRARY)
986
set(ZMQ_LIB "${ZMQ_LIB};${NORM_LIBRARY}")
987
endif()
988
+if(GSSAPI_LIBRARY)
989
+ set(ZMQ_LIB "${ZMQ_LIB};${GSSAPI_LIBRARY}")
990
+endif()
991
if(PROTOLIB_LIBRARY)
992
set(ZMQ_LIB "${ZMQ_LIB};${PROTOLIB_LIBRARY}")
993
0 commit comments