diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2022-01-21 16:14:00 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2022-01-23 22:51:55 +0530 |
commit | 717b6b7831ee8f6fa1ded904c5f186739c84d703 (patch) | |
tree | 2937c937d58d72b8d56afbd2cd8c63d2df943679 /recipes/srt.recipe | |
parent | d9da1542ed0298edcd310ffe1c3ccda17505db45 (diff) |
recipes: Enable MSVC support in more CMake recipes
And explicitly disable it in recipes that are known to be broken.
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/781>
Diffstat (limited to 'recipes/srt.recipe')
-rw-r--r-- | recipes/srt.recipe | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/recipes/srt.recipe b/recipes/srt.recipe index f905fe36..d6072f15 100644 --- a/recipes/srt.recipe +++ b/recipes/srt.recipe @@ -12,6 +12,7 @@ class Recipe(recipe.Recipe): stype = SourceType.TARBALL btype = BuildType.CMAKE cmake_generator = 'ninja' + can_msvc = False # CXX11 builds stuff we don't need, and causes a build failure on mingw configure_options = '-DUSE_ENCLIB=openssl -DENABLE_CXX11=OFF' # openssl on Linux |