Skip to content

Commit

Permalink
fix conanfile
Browse files Browse the repository at this point in the history
  • Loading branch information
leoparente committed Jan 10, 2025
1 parent 0e05856 commit 7a781d1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,11 @@ def requirements(self):
self.requires("yaml-cpp/0.8.0")
self.requires("robin-hood-hashing/3.11.5")
self.requires("libcurl/8.11.1")
self.requires("libevent/2.1.12")
if self.settings.compiler.libc and self.settings.compiler.libc != "musl":
if (
self.settings.compiler
and self.settings.compiler.libc
and self.settings.compiler.libc != "musl"
):
self.requires("sentry-crashpad/0.6.5")

def build_requirements(self):
Expand Down

0 comments on commit 7a781d1

Please sign in to comment.