Skip to content

Commit

Permalink
No need for zlib compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
alxvth committed Oct 9, 2024
1 parent 4cd4efa commit 16e2245
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,7 @@
import pathlib
import subprocess
from rules_support import PluginBranchInfo
import re

def compatibility(os, compiler, compiler_version):
# On macos fallback to zlib apple-clang 13
if os == "Macos" and compiler == "apple-clang" and bool(re.match("14.*", compiler_version)):
print("Compatibility match")
return ["zlib/1.3:compiler.version=13"]
return None


class ExamplePluginsConan(ConanFile):
"""Class to package ExamplePlugins using conan
Expand Down

0 comments on commit 16e2245

Please sign in to comment.