Skip to content

Commit

Permalink
📦 Add cmake as a build tool
Browse files Browse the repository at this point in the history
  • Loading branch information
Khalil Estell authored and kammce committed Nov 28, 2023
1 parent 352d2b1 commit 38a4a1c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,13 @@ def lazy_lt_semver(v1, v2):
raise ConanInvalidConfiguration(
f"{self.name} {self.version} requires C++{self._min_cppstd}, which your compiler ({compiler}-{version}) does not support")

def requirements(self):
self.requires("libhal/[^2.0.0 ]")
self.requires("libhal-util/[^2.0.0 || ^3.0.0]")
def build_requirements(self):
self.test_requires("boost-ext-ut/1.1.9")

def requirements(self):
self.requires("libhal/[^2.0.3]", transitive_headers=True)
self.requires("libhal-util/[^3.0.1]")

def layout(self):
cmake_layout(self)

Expand Down

0 comments on commit 38a4a1c

Please sign in to comment.