diff options
author | Brian P. Hinz <bphinz@users.sf.net> | 2014-10-22 22:57:06 -0400 |
---|---|---|
committer | Brian P. Hinz <bphinz@users.sf.net> | 2014-10-22 22:57:06 -0400 |
commit | a6d6dbb5b003025ba43acdc2c71248375c5af275 (patch) | |
tree | d2f0cb725a2e37a9dd3b59d592c9b57850cf3996 /cmake | |
parent | 5e3467b8cd7e6a17d9656ab5273e56f895a78d32 (diff) | |
download | tigervnc-a6d6dbb5b003025ba43acdc2c71248375c5af275.tar.gz tigervnc-a6d6dbb5b003025ba43acdc2c71248375c5af275.zip |
Add in missing dependency for windows builds.
Commit f95272d created some undefined references in GnuTLS.
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/StaticBuild.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/StaticBuild.cmake b/cmake/StaticBuild.cmake index 4ef29056..5800a078 100644 --- a/cmake/StaticBuild.cmake +++ b/cmake/StaticBuild.cmake @@ -34,7 +34,7 @@ if(BUILD_STATIC) set(GNUTLS_LIBRARIES "-Wl,-Bstatic -lgnutls -ltasn1") if(NETTLE_LIBRARY) - set(GNUTLS_LIBRARIES "${GNUTLS_LIBRARIES} -lnettle -lhogweed -lgmp") + set(GNUTLS_LIBRARIES "${GNUTLS_LIBRARIES} -lnettle -lhogweed -lgmp -lcrypt32") endif() if(GCRYPT_LIBRARY) set(GNUTLS_LIBRARIES "${GNUTLS_LIBRARIES} -lgcrypt -lgpg-error") |