summaryrefslogtreecommitdiff
path: root/tests/autobahn/meson.build
blob: c4598bd4f3284369b7b62102aed1fcedb5e4a97e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
autobahn_conf = configuration_data()
autobahn_conf.set('MESON_BUILD_ROOT', meson.build_root())

configure_file(
  input : 'autobahn-server.json.in',
  output : 'autobahn-server.json',
  configuration : autobahn_conf,
)

client = executable('autobahn-test', 'autobahn-test.c',
    link_with : test_utils,
    dependencies : libsoup_static_dep,
    include_directories : include_directories('..'),
)

test('autobahn-test', client,
  suite : 'autobahn',
  env : env,
  timeout : 3600,
  protocol : 'tap',
)