summaryrefslogtreecommitdiff
path: root/sys/winks
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-07-27 18:59:23 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2018-07-27 19:04:38 +0530
commitb55dfb5313f1df702a3637efbd372b90cd12a300 (patch)
treeae7f255314e783be74b9201cd6dfcd8ca9da18b5 /sys/winks
parent7ef303fa281b9226ebd0087fb377ca25887941e4 (diff)
downloadgstreamer-plugins-bad-b55dfb5313f1df702a3637efbd372b90cd12a300.tar.gz
Add feature options for almost all plugins
The only plugins remaining are those that haven't been ported to Meson yet, and msdk. Also, the tests are still automagic. https://bugzilla.gnome.org/show_bug.cgi?id=795107
Diffstat (limited to 'sys/winks')
-rw-r--r--sys/winks/meson.build9
1 files changed, 6 insertions, 3 deletions
diff --git a/sys/winks/meson.build b/sys/winks/meson.build
index 59036a184..eea1a31a9 100644
--- a/sys/winks/meson.build
+++ b/sys/winks/meson.build
@@ -8,9 +8,12 @@ winks_sources = [
]
if host_system == 'windows'
- winks_dep = [cc.find_library('ksuser'), cc.find_library('uuid'),
- cc.find_library('strmiids'), cc.find_library('dxguid'),
- cc.find_library('setupapi'), cc.find_library('ole32')]
+ winks_dep = [cc.find_library('ksuser', required : get_option('winks')),
+ cc.find_library('uuid', required : get_option('winks')),
+ cc.find_library('strmiids', required : get_option('winks')),
+ cc.find_library('dxguid', required : get_option('winks')),
+ cc.find_library('setupapi', required : get_option('winks')),
+ cc.find_library('ole32', required : get_option('winks'))]
gstwinks = library('gstwinks',
winks_sources,