Skip to content

Commit

Permalink
hack: Install libxml2, libxslt, harfbuzz on macOS from Conan
Browse files Browse the repository at this point in the history
  • Loading branch information
annulen committed Sep 23, 2023
1 parent 070b2e2 commit dbef829
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Tools/qt/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,12 @@ def requirements(self):
self.requires("libtasn1/4.16.0")
self.requires("libgcrypt/1.8.4")

if self.settings.os == 'Macos':
self.requires("libxml2/2.11.4")
self.requires("libxslt/1.1.34")
self.requires("harfbuzz/8.1.1") # FIXME: Match Qt!


if self.settings.os == 'Windows' or self.settings.os == 'Macos':
# FIXME: Pass Qt version, handle more versions
qt_version = "5.15.2"
Expand Down

0 comments on commit dbef829

Please sign in to comment.