From d7bf0e581942fca27ef9bf79c6684c8d19ae1967 Mon Sep 17 00:00:00 2001 From: Alexej Harm Date: Sat, 16 Mar 2019 11:02:50 +0100 Subject: [PATCH] [fmt] Changed library linkage to static. (#5688) * [fmt] Changed library linkage to static. * [fmt] Re-enabled shared build without breaking LTCG toolchains. --- ports/fmt/CONTROL | 2 +- ports/fmt/portfile.cmake | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/ports/fmt/CONTROL b/ports/fmt/CONTROL index 7a82286dd01..79e7804d5ec 100644 --- a/ports/fmt/CONTROL +++ b/ports/fmt/CONTROL @@ -1,3 +1,3 @@ Source: fmt -Version: 5.3.0 +Version: 5.3.0-1 Description: Formatting library for C++. It can be used as a safe alternative to printf or as a fast alternative to IOStreams. diff --git a/ports/fmt/portfile.cmake b/ports/fmt/portfile.cmake index d36efcadc3f..228ed765134 100644 --- a/ports/fmt/portfile.cmake +++ b/ports/fmt/portfile.cmake @@ -6,7 +6,6 @@ vcpkg_from_github( SHA512 9ef0f3d328681253c1e1776576d54d67dec49c19fd7fc422ae63c3610b01a3f05f6e83cdf5e913dfd09bac42e52fe35c38ebe1ea91f4207d226a32aaf69eb4a8 HEAD_REF master ) - vcpkg_configure_cmake( SOURCE_PATH ${SOURCE_PATH} PREFER_NINJA @@ -14,7 +13,6 @@ vcpkg_configure_cmake( -DFMT_CMAKE_DIR=share/fmt -DFMT_TEST=OFF -DFMT_DOC=OFF - -DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=ON ) vcpkg_install_cmake()