Update conanfile.py

This commit is contained in:
Sebastian Meßmer 2021-04-17 23:07:16 -07:00 committed by GitHub
parent 8898f32e20
commit 0856d3ed9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -34,7 +34,9 @@ class CryFSConan(ConanFile):
}
def requirements(self):
if self.settings.os == "Windows" or self.settings.os == "Macos":
if self.settings.os == "Macos":
self.requires("boost/1.73.0@conan/stable")
elif self.settings.os == "Windows":
self.requires("boost/1.69.0@conan/stable")
else:
self.requires("boost/1.65.1@conan/stable")