vcpkg/ports/boost-cmake/zstd.diff

17 lines
646 B
Diff
Raw Normal View History

diff --git a/include/BoostInstall.cmake b/include/BoostInstall.cmake
index 49c0086fea..d5403a19e7 100644
--- a/include/BoostInstall.cmake
+++ b/include/BoostInstall.cmake
@@ -332,9 +332,9 @@ function(boost_install_target)
string(APPEND CONFIG_FILE_CONTENTS "find_dependency(LibLZMA)\n")
- elseif(dep STREQUAL "zstd::libzstd_shared" OR dep STREQUAL "zstd::libzstd_static")
+ elseif(dep MATCHES "zstd::libzstd_(shared|static)")
- string(APPEND CONFIG_FILE_CONTENTS "find_dependency(zstd)\n")
+ string(APPEND CONFIG_FILE_CONTENTS "find_dependency(zstd CONFIG)\n")
elseif(dep STREQUAL "MPI::MPI_C")