File: meson.build

package info (click to toggle)
libnice 0.1.22-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,668 kB
  • sloc: ansic: 38,160; xml: 125; sh: 48; python: 28; makefile: 18
file content (15 lines) | stat: -rw-r--r-- 452 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
librandom = static_library('nice-random',
  'random.c', 'random-glib.c',
  c_args: ['-DG_LOG_DOMAIN="libnice-random"'],
  include_directories: nice_incs,
  dependencies: gio_deps + [gthread_dep],
  install: false)

if not get_option('tests').disabled()
  test_exe = executable('nice-random-test', 'test.c',
    include_directories: nice_incs,
    dependencies: gio_deps + [gthread_dep],
    link_with: librandom)

  test('nice-random', test_exe)
endif