Fix an incorrect call to soup_message_set_request.
[pidgin-git.git] / libpurple / tests / meson.build
blobb2e633153045e518a7fbd7ffb614e26ea4219554
1 PROGS = [
2     'account_option',
3     'attention_type',
4     'circular_buffer',
5     'image',
6     'protocol_action',
7     'protocol_attention',
8     'protocol_xfer',
9     'queued_output_stream',
10     'smiley',
11     'smiley_list',
12     'trie',
13     'util',
14     'xmlnode'
17 test_ui = static_library(
18     'test-ui',
19     'test_ui.c',
20     'test_ui.h',
21     c_args: [
22         '-DTEST_DATA_DIR="@0@/data"'.format(meson.current_source_dir())
23     ],
24     dependencies: [libpurple_dep, glib]
27 foreach prog : PROGS
28     e = executable('test_' + prog, 'test_@0@.c'.format(prog),
29                    c_args : [
30                        '-DTEST_DATA_DIR="@0@/data"'.format(meson.current_source_dir())
31                    ],
32                    dependencies : [libpurple_dep, glib],
33                    link_with: test_ui,
34     )
35     test(prog, e)
36 endforeach