summaryrefslogtreecommitdiffstats
path: root/tests/irc/core/meson.build
blob: f63f4fa8ff88531a2e8080237e688b1d2aa7b787 (plain)
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
40
41
42
43
44
45
test_test_irc = executable('test-irc',
  files(
    'test-irc.c',
  ),
  link_with : [
    libconfig_a,
    libcore_a,
    libfe_common_core_a,
    libirc_core_a,
  ],
  c_args : [
    '-D' + 'PACKAGE_STRING' + '="' + 'irc/core' + '"',
  ],
  include_directories : rootinc,
  implicit_include_directories : false,
  dependencies : dep
)
test('test-irc test', test_test_irc,
  args : [
    '--tap',
  ],
  protocol : 'tap')

test_test_channel_events = executable('test-channel-events',
  files(
    'test-channel-events.c',
  ),
  link_with : [
    libconfig_a,
    libcore_a,
    libfe_common_core_a,
    libirc_core_a,
  ],
  c_args : [
    '-D' + 'PACKAGE_STRING' + '="' + 'irc/core' + '"',
  ],
  include_directories : rootinc,
  implicit_include_directories : false,
  dependencies : dep
)
test('test-channel-events test', test_test_channel_events,
  args : [
    '--tap',
  ],
  protocol : 'tap')