summaryrefslogtreecommitdiff
path: root/ext/taglib
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-07-25 07:35:28 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2018-07-27 18:42:54 +0530
commit8f807477ebb324703172aaee1660ad21a5683fb7 (patch)
treeb52368ecacdffb314d282d0718fb662444075318 /ext/taglib
parentf2c2560db27b97ae9fa00e3a06a485b8e1cd79aa (diff)
downloadgstreamer-plugins-good-8f807477ebb324703172aaee1660ad21a5683fb7.tar.gz
meson: Add feature options for all plugins
Checks for GL, Qt5, and C++ are still automagic. FIXMEs have been added for these so they can be fixed later. https://bugzilla.gnome.org/show_bug.cgi?id=795107
Diffstat (limited to 'ext/taglib')
-rw-r--r--ext/taglib/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/taglib/meson.build b/ext/taglib/meson.build
index 5a93ff3b8..1e5767da6 100644
--- a/ext/taglib/meson.build
+++ b/ext/taglib/meson.build
@@ -4,9 +4,9 @@ taglib_sources = [
'gsttaglibplugin.c',
]
-taglib_dep = dependency('taglib', version : '>= 1.5', required : false)
+taglib_dep = dependency('taglib', version : '>= 1.5', required : get_option('taglib'))
-if taglib_dep.found() and add_languages('cpp', required : false)
+if taglib_dep.found() and add_languages('cpp')
extra_args = []
cxx = meson.get_compiler('cpp')
if cxx.has_argument('-fvisibility=hidden')