Replace functions which called once with their bodies
[pidgin-git.git] / libpurple / plugins / keyrings / meson.build
blobf02c3de6e312bdd8c6106a109df7f9de0b0d1154
1 if PLUGINS
2         subdir('kwallet')
4         if nettle.found()
5                 internalkeyring_plugin = library('internalkeyring', 'internalkeyring.c',
6                     dependencies : [nettle, libpurple_dep],
7                     name_prefix : '',
8                     install : true, install_dir : PURPLE_PLUGINDIR)
9         endif
11         if secretservice.found()
12                 secretsservice_plugin = library('secretservice', 'secretservice.c',
13                     dependencies : [secretservice, libpurple_dep],
14                     name_prefix : '',
15                     install : true, install_dir : PURPLE_PLUGINDIR)
16         endif
18         if IS_WIN32
19                 wincred_plugin = library('wincred', 'wincred.c',
20                     dependencies : [libpurple_dep],
21                     name_prefix : '',
22                     install : true, install_dir : PURPLE_PLUGINDIR)
23         endif
24 endif  # PLUGINS