Skip to content

Commit

Permalink
hack: Install libxml2, libxslt, harfbuzz, zlib 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 7910477
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Tools/qt/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,13 @@ 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!
self.requires("zlib/1.3")


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 7910477

Please sign in to comment.