From 5cdb7312caa3af5fdfb81b94529d087b371e33d3 Mon Sep 17 00:00:00 2001 From: Pablo Tesone Date: Mon, 14 Nov 2022 15:39:29 +0100 Subject: [PATCH] Adding dependencies of Darwin ARM --- cmake/importCairo.cmake | 2 +- cmake/importFreetype2.cmake | 3 ++- cmake/importSDL2.cmake | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/cmake/importCairo.cmake b/cmake/importCairo.cmake index 52686457ef..cf3364b4c6 100644 --- a/cmake/importCairo.cmake +++ b/cmake/importCairo.cmake @@ -15,7 +15,7 @@ if (BUILD_BUNDLE) elseif(OSX) If(${CMAKE_SYSTEM_PROCESSOR} MATCHES "arm64") add_third_party_dependency("pixman-0.40.0") - add_third_party_dependency("cairo-1.16.0") + add_third_party_dependency("cairo-1.17.4") add_third_party_dependency("libpng-1.6.37") else() add_third_party_dependency("pixman-0.40.0") diff --git a/cmake/importFreetype2.cmake b/cmake/importFreetype2.cmake index 22c2e8c92d..161ddea0e1 100644 --- a/cmake/importFreetype2.cmake +++ b/cmake/importFreetype2.cmake @@ -20,8 +20,9 @@ function(download_Freetype) endif() elseif(OSX) If(${CMAKE_SYSTEM_PROCESSOR} MATCHES "arm64") - add_third_party_dependency("freetype-2.10.0") + add_third_party_dependency("freetype-2.12.1") add_third_party_dependency("fontconfig-2.13.1") + add_third_party_dependency("harfbuzz-5.3.1") else() add_third_party_dependency("freetype-2.12.1") add_third_party_dependency("fontconfig-2.13.1") diff --git a/cmake/importSDL2.cmake b/cmake/importSDL2.cmake index bc5fdc84e4..f766e57341 100644 --- a/cmake/importSDL2.cmake +++ b/cmake/importSDL2.cmake @@ -17,7 +17,7 @@ function(download_SDL2) endif() elseif(OSX) if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "arm64") - add_third_party_dependency("SDL2-2.0.14") + add_third_party_dependency("SDL2-2.24.1") else() add_third_party_dependency("SDL2-2.24.1") endif()