Skip to content

Commit

Permalink
fix version file generation in conan package
Browse files Browse the repository at this point in the history
  • Loading branch information
liss-h committed Aug 20, 2024
1 parent 6bf7509 commit 67074f7
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,9 @@ def layout(self):
cmake_layout(self)

def build(self):
if not self.conf.get("tools.build:skip_test", default=False):
cmake = CMake(self)
cmake.configure()
cmake.build()
cmake = CMake(self)
cmake.configure()
cmake.build()

def package_id(self):
self.info.clear()
Expand Down

0 comments on commit 67074f7

Please sign in to comment.