mark PurpleImageClass as private
[pidgin-git.git] / libpurple / protocols / bonjour / meson.build
blob7cb337d2764bb4ceae3a51c5f0cefff0925d8db3
1 BONJOURSOURCES = [
2         'bonjour.c',
3         'bonjour.h',
4         'buddy.c',
5         'buddy.h',
6         'jabber.c',
7         'jabber.h',
8         'mdns_common.c',
9         'mdns_common.h',
10         'mdns_interface.h',
11         'mdns_types.h',
12         'parser.c',
13         'parser.h',
14         'bonjour_ft.c',
15         'bonjour_ft.h'
18 if IS_WIN32
19         BONJOURSOURCES += ['dns_sd_proxy.c', 'mdns_dns_sd.c']
20         bonjour_link_args = ['-lnetapi32']
21 else
22         BONJOURSOURCES += ['mdns_avahi.c']
23         bonjour_link_args = []
24 endif
26 if DYNAMIC_BONJOUR
27         bonjour_prpl = shared_library('bonjour', BONJOURSOURCES,
28             link_args : bonjour_link_args,
29             dependencies : [libxml, avahi, libpurple_dep, glib, ws2_32],
30             install : true, install_dir : PURPLE_PLUGINDIR)
31 endif