Skip to content

Commit

Permalink
Fix: version file generation in conan package (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
liss-h authored Aug 20, 2024
1 parent d61f38a commit c6e2f51
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 c6e2f51

Please sign in to comment.