1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-01 07:16:37 +02:00

core: fix link with gcrypt lib in cmake (use var $GCRYPT_LDFLAGS instead of "gcrypt") (bug #37373)

This commit is contained in:
Sebastien Helleu
2012-09-17 16:01:05 +02:00
parent bfaed2bec6
commit a83007d118
3 changed files with 3 additions and 5 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ IF(GNUTLS_FOUND)
LIST(APPEND LINK_LIBS ${GNUTLS_LIBRARY})
ENDIF(GNUTLS_FOUND)
LIST(APPEND LINK_LIBS gcrypt)
LIST(APPEND LINK_LIBS ${GCRYPT_LDFLAGS})
TARGET_LINK_LIBRARIES(irc ${LINK_LIBS})