summaryrefslogtreecommitdiff
path: root/tests/meson.build
blob: 626168c8c74416bbf0c9a326d7cb2fa4a1bd580a (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

test_ctcp_tokenize = executable(
	'test-ctcp-tokenize',
	sources: [
		'test-ctcp-tokenize.c',
	],
	dependencies: idle_deps,
	include_directories: [configuration_inc, src_inc],
	link_with: libidle_convenience,
)
test('test_ctcp_tokenize', test_ctcp_tokenize)

test_ctcp_kill_blingbling = executable(
	'test-ctcp-kill-blingbling',
	sources: [
		'test-ctcp-kill-blingbling.c',
	],
	dependencies: idle_deps,
	include_directories: [configuration_inc, src_inc],
	link_with: libidle_convenience,
)
test('test_ctcp_kill_blingbling', test_ctcp_kill_blingbling)

test_text_encode_and_split = executable(
	'test-text-encode-and-split',
	sources: [
		'test-text-encode-and-split.c',
	],
	dependencies: idle_deps,
	include_directories: [configuration_inc, src_inc],
	link_with: libidle_convenience,
)
test('test_text_encode_and_split', test_text_encode_and_split)

if get_option('twisted_tests')
	subdir('twisted')
endif