finch/plugins/meson.build

Wed, 04 Aug 2021 04:42:29 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Wed, 04 Aug 2021 04:42:29 -0500
changeset 41011
90dd69fd1372
parent 39991
aef6dc04cf17
child 41066
00e6bda3ef95
permissions
-rw-r--r--

Remove the option to disable compiling plugins.

This is a niche feature at best but we can revisit it when we re-enable static
protocol plugins.

Testing Done:
Compiled

Reviewed at https://reviews.imfreedom.org/r/873/

if x11.found()
	gntclipboard = library('gntclipboard', 'gntclipboard.c',
	    dependencies : [x11, libpurple_dep, libfinch_dep, glib],
	    name_prefix : '',
	    install : true, install_dir : FINCH_PLUGINDIR)

	gntgf = library('gntgf', 'gntgf.c',
	    c_args : ncurses_header,
	    dependencies : [x11, libpurple_dep, libfinch_dep, ncurses, glib],
	    name_prefix : '',
	    install : true, install_dir : FINCH_PLUGINDIR)
endif

gnthistory = library('gnthistory', 'gnthistory.c',
    dependencies : [libpurple_dep, libfinch_dep, glib],
    name_prefix : '',
    install : true, install_dir : FINCH_PLUGINDIR)

gntlastlog = library('gntlastlog', 'lastlog.c',
    dependencies : [libpurple_dep, libfinch_dep, ncurses, glib],
    name_prefix : '',
    install : true, install_dir : FINCH_PLUGINDIR)

gnttinyurl = library('gnttinyurl', 'gnttinyurl.c',
    dependencies : [libpurple_dep, libfinch_dep, libsoup, glib],
    name_prefix : '',
    install : true, install_dir : FINCH_PLUGINDIR)

grouping = library('grouping', 'grouping.c',
    dependencies : [libpurple_dep, libfinch_dep, glib],
    name_prefix : '',
    install : true, install_dir : FINCH_PLUGINDIR)

mercurial