diff options
author | Pierre Ossman <ossman@cendio.se> | 2020-12-07 12:33:50 +0100 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2020-12-07 12:33:50 +0100 |
commit | d484001e97ff113e4526bd97661fffcd0372bb34 (patch) | |
tree | 584526d05c6ca72cb8a556195616e9e41394e1d9 /cmake | |
parent | b2b265a18305f5675f803b6c83f625181bf8e27c (diff) | |
download | tigervnc-d484001e97ff113e4526bd97661fffcd0372bb34.tar.gz tigervnc-d484001e97ff113e4526bd97661fffcd0372bb34.zip |
Add comment why unistring is linked dynamically
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/StaticBuild.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmake/StaticBuild.cmake b/cmake/StaticBuild.cmake index beccc5c0..c7c93526 100644 --- a/cmake/StaticBuild.cmake +++ b/cmake/StaticBuild.cmake @@ -43,6 +43,8 @@ if(BUILD_STATIC) set(GETTEXT_LIBRARIES "${GETTEXT_LIBRARIES} -Wl,-Bdynamic") + # FIXME: MSYS2 doesn't include a static version of this library, so + # we'll have to link it dynamically for now if(UNISTRING_LIBRARY) set(GETTEXT_LIBRARIES "${GETTEXT_LIBRARIES} -lunistring") endif() |