aboutsummaryrefslogtreecommitdiff
path: root/meson.build
blob: 552e1f80a64366852f1a3dfb39461f9c2a8e5cf6 (plain) (blame)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
project(
	'wmenu',
	'c',
	version: '0.1.7',
	license: 'MIT',
	default_options: [
		'c_std=c11',
		'warning_level=2',
		'werror=true',
	]
)

cc = meson.get_compiler('c')

add_project_arguments(cc.get_supported_arguments([
	'-DVERSION="@0@"'.format(meson.project_version()),

	'-Wno-missing-field-initializers',
	'-Wno-unused-parameter',
	'-Wundef',
	'-Wvla',
]), language : 'c')

cairo           = dependency('cairo')
pango           = dependency('pango')
pangocairo      = dependency('pangocairo')
wayland_client  = dependency('wayland-client')
wayland_protos  = dependency('wayland-protocols')
xkbcommon       = dependency('xkbcommon')

rt = cc.find_library('rt')

subdir('protocols')
subdir('docs')

install_data('wmenu_run', install_dir: get_option('bindir'))

executable(
	'wmenu',
	files(
		'menu.c',
		'pango.c',
		'pool-buffer.c',
		'render.c',
		'wayland.c',
		'wmenu.c',
	),
	dependencies: [
		cairo,
		client_protos,
		pango,
		pangocairo,
		rt,
		wayland_client,
		wayland_protos,
		xkbcommon,
	],
	install: true,
)

executable(
	'wmenu-run',
	files(
		'menu.c',
		'pango.c',
		'pool-buffer.c',
		'render.c',
		'wayland.c',
		'wmenu-run.c',
	),
	dependencies: [
		cairo,
		client_protos,
		pango,
		pangocairo,
		rt,
		wayland_client,
		wayland_protos,
		xkbcommon,
	],
	install: true,
)