diff options
| author | grdowns <grdowns@microsoft.com> | 2019-06-05 18:24:39 -0700 |
|---|---|---|
| committer | grdowns <grdowns@microsoft.com> | 2019-06-05 18:24:39 -0700 |
| commit | 4fab470553366c5f4282f9d948625f85980ca0c6 (patch) | |
| tree | dc3596eb420998a9606dff26a0958c1f3d17bfa6 | |
| parent | dc008d14a902bd5ae1d2b51d10d16020e461b7f7 (diff) | |
| download | vcpkg-4fab470553366c5f4282f9d948625f85980ca0c6.tar.gz vcpkg-4fab470553366c5f4282f9d948625f85980ca0c6.zip | |
Stop forcing static linkage
| -rw-r--r-- | ports/glibmm/portfile.cmake | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/ports/glibmm/portfile.cmake b/ports/glibmm/portfile.cmake index 693a77278..460e32cac 100644 --- a/ports/glibmm/portfile.cmake +++ b/ports/glibmm/portfile.cmake @@ -5,11 +5,6 @@ if (VCPKG_CMAKE_SYSTEM_NAME STREQUAL WindowsStore) message(FATAL_ERROR "Error: UWP builds are currently not supported.") endif() -# This library itself would would as static library, but it is used by gtkmm, atkmm & pangomm which are all set to ONLY_DYNAMIC LIBRARY -# Having multiple dynamic libaries linking the same static library causes multiple copies of its static data to be present in the executable -# leading to confusing and hard-to-debug runtime effects. -vcpkg_check_linkage(ONLY_DYNAMIC_LIBRARY) - set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/glibmm-2.52.1) vcpkg_download_distfile(ARCHIVE URLS "http://ftp.gnome.org/pub/GNOME/sources/glibmm/2.52/glibmm-2.52.1.tar.xz" |
