pidgin/plugins/gestures/meson.build

Mon, 05 Aug 2019 19:44:41 -0400

author
Elliott Sales de Andrade <qulogic@pidgin.im>
date
Mon, 05 Aug 2019 19:44:41 -0400
changeset 39745
3d88b92e5db4
parent 39702
8102041c0288
child 40497
2f45a03838e9
permissions
-rw-r--r--

Disable installing plugins that aren't built.

This breaks the install target, though it's probably a bug in meson.

gestures_SOURCES = [
	'gestures.c',
	'gstroke.h',
	'gstroke-internal.h',
	'stroke.c',
	'stroke-draw.c'
]

if PLUGINS
	gestures = library('gestures', gestures_SOURCES,
	    build_by_default: false,
	    dependencies : [x11, libpurple_dep, libpidgin_dep, glib],
	    name_prefix : '',
	    install : false, install_dir : PIDGIN_PLUGINDIR)
endif

mercurial