mark PurpleImageClass as private
[pidgin-git.git] / libpurple / protocols / oscar / meson.build
blob6845ba4c4ed4e1e126a030449f4016549d1fcd69
1 OSCARSOURCES = [
2         'authorization.c',
3         'aim.c',
4         'aim.h',
5         'bstream.c',
6         'clientlogin.c',
7         'kerberos.c',
8         'encoding.c',
9         'encoding.h',
10         'family_admin.c',
11         'family_alert.c',
12         'family_auth.c',
13         'family_bart.c',
14         'family_bos.c',
15         'family_buddy.c',
16         'family_chat.c',
17         'family_chatnav.c',
18         'family_icq.c',
19         'family_icbm.c',
20         'family_locate.c',
21         'family_oservice.c',
22         'family_popup.c',
23         'family_feedbag.c',
24         'family_stats.c',
25         'family_userlookup.c',
26         'flap_connection.c',
27         'icq.c',
28         'icq.h',
29         'misc.c',
30         'msgcookie.c',
31         'odc.c',
32         'oft.c',
33         'oscar.c',
34         'oscar.h',
35         'oscarcommon.h',
36         'oscar_data.c',
37         'peer.c',
38         'peer.h',
39         'peer_proxy.c',
40         'rxhandlers.c',
41         'snac.c',
42         'snactypes.h',
43         'tlv.c',
44         'userinfo.c',
45         'util.c',
46         'visibility.c',
47         'visibility.h'
50 if IS_WIN32
51         oscar_link_args = ['-Wl,--export-all-symbols']
52 else
53         oscar_link_args = []
54 endif
56 if DYNAMIC_OSCAR
57         oscar_prpl = shared_library('oscar', OSCARSOURCES,
58             link_args : oscar_link_args,
59             dependencies : [libpurple_dep, glib, ws2_32],
60             install : true, install_dir : PURPLE_PLUGINDIR)
62         subdir('tests')
63 endif