Skip to content

Commit

Permalink
Update recipes/libid3tag/all/conanfile.py
Browse files Browse the repository at this point in the history
Co-authored-by: Uilian Ries <uilianries@gmail.com>
  • Loading branch information
valgur and uilianries authored Dec 12, 2023
1 parent 91310bc commit 0899339
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion recipes/libid3tag/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@ def configure(self):
self.settings.rm_safe("compiler.cppstd")

def layout(self):
basic_layout(self, src_folder="src")
if is_msvc(self):
cmake_layout(self, src_folder="src")

Check failure on line 50 in recipes/libid3tag/all/conanfile.py

View workflow job for this annotation

GitHub Actions / Lint changed conanfile.py (v2 migration)

Undefined variable 'cmake_layout'
else:
basic_layout(self, src_folder="src")

def requirements(self):
self.requires("zlib/[>=1.2.11 <2]")
Expand Down

0 comments on commit 0899339

Please sign in to comment.