Skip to content

Commit

Permalink
macos: conan 2
Browse files Browse the repository at this point in the history
  • Loading branch information
igagis committed Dec 3, 2024
1 parent ae63759 commit df54a86
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions conan/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ def requirements(self):

def build_requirements(self):
self.requires("tst/[>=0.3.29]@cppfw/main", visible=False)
self.tool_requires("prorab/[>=2.0.27]@cppfw/main")
self.tool_requires("prorab-extra/[>=0.2.57]@cppfw/main")

def config_options(self):
if self.settings.os == "Windows":
Expand All @@ -50,8 +52,8 @@ def source(self):
git.run("submodule update --init --remote --depth 1")

def build(self):
self.run("make lint=off")
self.run("make lint=off test")
self.run("make $MAKE_INCLUDE_DIRS_ARG lint=off")
self.run("make $MAKE_INCLUDE_DIRS_ARG lint=off test")

def package(self):
src_dir = os.path.join(self.build_folder, "src")
Expand Down

0 comments on commit df54a86

Please sign in to comment.