From 7d36290582faf997cecd955231a960d791a7c399 Mon Sep 17 00:00:00 2001 From: Alexandre Mercier Aubin Date: Fri, 25 Apr 2025 18:57:06 -0400 Subject: [PATCH] Update libigl.cmake so it uses a commit with a non-deprecated boost archive Update libigl.cmake so it uses a commit with a non-deprecated boost archive This should allow people without an independent libigl toolbox to just get all from vcpkg. Otherwise boost will try to fetch from jfrog rather than the archive. --- mex/cmake/libigl.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mex/cmake/libigl.cmake b/mex/cmake/libigl.cmake index 307ee9c8..efa429b6 100644 --- a/mex/cmake/libigl.cmake +++ b/mex/cmake/libigl.cmake @@ -6,6 +6,6 @@ include(FetchContent) FetchContent_Declare( libigl GIT_REPOSITORY https://github.com/libigl/libigl.git - GIT_TAG 667101084ac342f1f700299349452143069cbb4a + GIT_TAG 89267b4a80b1904de3f6f2812a2053e5e9332b7e ) FetchContent_MakeAvailable(libigl)