cmake: BZip2 fixup

This commit is contained in:
Corentin Le Molgat
2025-04-07 17:46:43 +02:00
parent 1f27694ab8
commit a5bbbcbcff
8 changed files with 58 additions and 22 deletions

View File

@@ -145,7 +145,9 @@ public class Loader {
Path tempPath = unpackNativeResources(resourceURI);
// libraries order does matter <LibraryName, isMandatory> !
List<Map.Entry<String, Boolean>> dlls =
Arrays.asList((new AbstractMap.SimpleEntry("zlib1", true)),
Arrays.asList(
(new AbstractMap.SimpleEntry("zlib1", true)),
(new AbstractMap.SimpleEntry("bz2", true)),
(new AbstractMap.SimpleEntry("abseil_dll", true)),
(new AbstractMap.SimpleEntry("re2", true)),
(new AbstractMap.SimpleEntry("libutf8_validity", true)),