Skip to content

Commit

Permalink
Add macOS support
Browse files Browse the repository at this point in the history
  • Loading branch information
queengooborg committed Oct 7, 2018
1 parent 7eda4d2 commit 53ca67b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def package_info(self):
includedir = os.path.join("include", "ruby-2.5.0")
configdir = None
for f in os.listdir(os.path.join(self.package_folder, includedir)):
if "mswin" in f or "mingw" in f or "linux" in f:
if "mswin" in f or "mingw" in f or "linux" in f or "darwin" in f:
configdir = f
break
if not includedir:
Expand Down

0 comments on commit 53ca67b

Please sign in to comment.