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 (27 lines) | stat: -rw-r--r-- 837 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
# libnetclient/test/meson.build

libnetclient_a_sources = [
  'net-client.c',
  'net-client.h',
  'net-client-pop.c',
  'net-client-pop.h',
  'net-client-smtp.c',
  'net-client-smtp.h',
  'net-client-siobuf.c',
  'net-client-siobuf.h',
  'net-client-utils.c',
  'net-client-utils.h'
  ]

libnetclient_a = static_library('netclient', libnetclient_a_sources,
                                c_args              : '-DG_LOG_DOMAIN="libnetclient"',
                                dependencies        : libnetclient_deps,
                                include_directories : top_include,
                                install             : false)

if libnetclient_docs
  dox_path = join_paths(meson.source_root(), meson.current_source_dir(), 'libnetclient.dox')
  run_command(doxygen_program, dox_path, check : true)
endif

subdir('test')