Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
SiarheiFedartsou committed Oct 22, 2024
1 parent cc0eeb2 commit 5d6468f
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,17 @@

class OsrmConan(ConanFile):
settings = "os", "compiler", "build_type", "arch"
requires = (
"boost/1.85.0",
"bzip2/1.0.8",
"expat/2.6.2",
"lua/5.4.6",
"onetbb/2021.12.0"
)
generators = "CMakeDeps"


def requirements(self):
self.requires("boost/1.85.0")
self.requires("bzip2/1.0.8")
self.requires("expat/2.6.2")
self.requires("lua/5.4.6")
self.requires("onetbb/2021.12.0")
if self.settings.os == "Windows":
self.requires("zlib/1.3.1")

def configure(self):
self.options["boost"].without_python = True
self.options["boost"].without_coroutine = True
Expand Down

0 comments on commit 5d6468f

Please sign in to comment.