File: meson.build

package info (click to toggle)
balsa 2.6.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 23,576 kB
  • sloc: ansic: 99,871; xml: 4,934; makefile: 769; sh: 185; awk: 60; python: 34
file content (39 lines) | stat: -rw-r--r-- 1,183 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# libbalsa/imap/meson.build

libimap_a_sources = [
  'auth-cram.c',
  'auth-gssapi.c',
  'imap-auth.c',
  'imap-auth.h',
  'imap-commands.c',
  'imap-commands.h',
  'imap_compress.c',
  'imap_compress.h',
  'imap-handle.c',
  'imap-handle.h',
  'imap_search.c',
  'imap_search.h',
  'imap-tls.c',
  'imap_private.h',
  'libimap.h',
  'siobuf-nc.h',
  'util.c',
  'util.h'
  ]

libimap_link_arg    = '-lz'
libimap_compile_dep  = declare_dependency(link_args    : libimap_link_arg)

libimap_a = static_library('imap', libimap_a_sources,
                           c_args              : '-DG_LOG_DOMAIN="imap"',
                           dependencies        : balsa_deps + [libimap_compile_dep],
                           include_directories : [top_include, libnetclient_include],
                           install             : false)

imap_tst_sources = 'imap_tst.c'

imap_tst = executable('imap_tst', imap_tst_sources,
                      link_with           : [libimap_a, libnetclient_a],
                      dependencies        : balsa_deps,
                      include_directories : [top_include, libnetclient_include],
                      install             : false)