Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow to set ENABLE_HARU and WT_RASTERIMAGE_IMPLEMENTATION #18009

Merged
Prev Previous commit
Next Next commit
Merge branch 'master' into wt-haru-rasterimage
  • Loading branch information
ViktarHasiul231862 authored Sep 26, 2023
commit 1f2b04a53cd22cded8738943930938939346c607
4 changes: 2 additions & 2 deletions recipes/wt/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ def requirements(self):
if self.options.get_safe("with_mssql") and self.settings.os != "Windows":
self.requires("odbc/2.3.11")
if self.options.get_safe("with_unwind"):
self.requires("libunwind/1.7.0")
self.requires("libunwind/1.7.2")
if self.options.with_haru:
self.requires("libharu/2.4.3")

def validate(self):
miss_boost_required_comp = any(self.dependencies["boost"].options.get_safe(f"without_{boost_comp}", True)
for boost_comp in self._required_boost_components)
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.