aboutsummaryrefslogtreecommitdiff
path: root/meson.build
blob: 219c3cec49021375cb6be8ce4c305479c41bf3d0 (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
project(
	'wlr-mirror',
	'c',
	version: '0.1.0',
	license: 'MIT',
	meson_version: '>=0.54.0',
	default_options: [
		'c_std=c11',
		'warning_level=2',
		'werror=true',
	],
)

cc = meson.get_compiler('c')

add_project_arguments(cc.get_supported_arguments([
	'-Wno-missing-braces',
	'-Wno-unused-parameter',
]), language: 'c')

wayland_client = dependency('wayland-client')
wayland_protos = dependency('wayland-protocols', version: '>=1.17')

subdir('protocol')

mirror_files = [ 'main.c' ]
mirror_deps = [
	wayland_client,
	wayland_protos,
	client_protos,
]


proto_inc = include_directories('protocol')

executable(
  meson.project_name(),
  mirror_files,
  dependencies: mirror_deps,
	include_directories: proto_inc,
  install: true
)