diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2024-02-16 11:56:58 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2024-02-16 13:55:06 +0530 |
commit | 14abc57bfd2213fa9386345118dc2b5cf139e08d (patch) | |
tree | f4595c735fffb98812fdcf7aa3558891759b0ff0 | |
parent | 1e77af9891e310939d23ddee94b7e433e2bfc0f3 (diff) |
taglib.recipe: Fix msvc x86 build race
Taglib depends on zlib.
Fixes https://gitlab.freedesktop.org/gstreamer/cerbero/-/issues/470
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1373>
-rw-r--r-- | recipes/taglib.recipe | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/recipes/taglib.recipe b/recipes/taglib.recipe index ab21d82a..1a1e8032 100644 --- a/recipes/taglib.recipe +++ b/recipes/taglib.recipe @@ -18,6 +18,8 @@ class Recipe(recipe.Recipe): -DBUILD_SHARED_LIBS=1 \ -DBUILD_STATIC_LIBS=1 \ -DCMAKE_DISABLE_FIND_PACKAGE_Boost=TRUE' + deps = ['zlib'] + can_msvc = True cmake_generator = 'ninja' |