From 436f1de44bc6e1ebc663e71e187990bb41c6ddee Mon Sep 17 00:00:00 2001 From: Billy Robert O'Neal III Date: Wed, 29 Apr 2020 23:44:33 -0700 Subject: [PATCH] [Ceres] Set LIB_SUFFIX for Ceres to ensure portfile and build agree. --- ports/ceres/portfile.cmake | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ports/ceres/portfile.cmake b/ports/ceres/portfile.cmake index 66481fc09..508191628 100644 --- a/ports/ceres/portfile.cmake +++ b/ports/ceres/portfile.cmake @@ -1,5 +1,3 @@ -include(vcpkg_common_functions) - set(MSVC_USE_STATIC_CRT_VALUE OFF) if(VCPKG_CRT_LINKAGE STREQUAL "static") if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic") @@ -69,6 +67,7 @@ vcpkg_configure_cmake( -DLAPACK=${LAPACK} -DSUITESPARSE=${SUITESPARSE} -DMSVC_USE_STATIC_CRT=${MSVC_USE_STATIC_CRT_VALUE} + -DLIB_SUFFIX=${LIB_SUFFIX} ) vcpkg_install_cmake()