libpurple/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 40683
dcc53af7a4fb
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/

subdir('keyrings')
subdir('notification-sound')

autoaccept = library('autoaccept', 'autoaccept.c',
    dependencies : [libpurple_dep, glib],
    name_prefix : '',
    install : true, install_dir : PURPLE_PLUGINDIR)

buddynote = library('buddynote', 'buddynote.c',
    dependencies : [libpurple_dep],
    name_prefix : '',
    install : true, install_dir : PURPLE_PLUGINDIR)

idle = library('idle', 'idle.c',
    dependencies : [libpurple_dep],
    name_prefix : '',
    install : true, install_dir : PURPLE_PLUGINDIR)

joinpart = library('joinpart', 'joinpart.c',
    dependencies : [libpurple_dep],
    name_prefix : '',
    install : true, install_dir : PURPLE_PLUGINDIR)

log_reader = library('log_reader', 'log_reader.c',
    dependencies : [libpurple_dep],
    name_prefix : '',
    install : true, install_dir : PURPLE_PLUGINDIR)

psychic = library('psychic', 'psychic.c',
    dependencies : [libpurple_dep],
    name_prefix : '',
    install : true, install_dir : PURPLE_PLUGINDIR)

statenotify = library('statenotify', 'statenotify.c',
    dependencies : [libpurple_dep],
    name_prefix : '',
    install : true, install_dir : PURPLE_PLUGINDIR)

purple_toast = library('purple-toast', 'purple-toast.c',
	dependencies : [libpurple_dep],
	name_prefix: '',
	install : true, install_dir : PURPLE_PLUGINDIR)

mercurial