aboutsummaryrefslogtreecommitdiff
path: root/meson.build
blob: 9a9574fd3b7529952bf977d5f45331c446d8ada3 (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
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
83
84
85
86
87
88
89
90
91
92
93
94
project('wlroots', 'c',
  license: 'MIT',
  default_options: [
    'c_std=c11',
    'warning_level=2',
    'werror=true',
  ])

add_project_arguments('-Wno-unused-parameter', language: 'c')
add_project_arguments('-DWLR_SRC_DIR="@0@"'.format(meson.source_root()), language: 'c')
add_project_link_arguments('-Wl,-rpath,@0@'.format(meson.build_root()), language: 'c')

wlr_inc = include_directories('include')

cc = meson.get_compiler('c')

# Clang complains about some zeroed initialiser lists (= {0}), even though they are valid
if cc.get_id() == 'clang'
  add_project_arguments('-Wno-missing-field-initializers', language: 'c')
  add_project_arguments('-Wno-missing-braces', language: 'c')
endif

wayland_server = dependency('wayland-server')
wayland_client = dependency('wayland-client')
wayland_egl    = dependency('wayland-egl')
wayland_protos = dependency('wayland-protocols')
egl            = dependency('egl')
glesv2         = dependency('glesv2')
drm            = dependency('libdrm')
gbm            = dependency('gbm')
libinput       = dependency('libinput')
xkbcommon      = dependency('xkbcommon')
udev           = dependency('libudev')
pixman         = dependency('pixman-1')
xcb            = dependency('xcb')
xcb_composite  = dependency('xcb-composite')
libcap         = dependency('libcap', required: false)
systemd        = dependency('libsystemd', required: false)
math           = cc.find_library('m', required: false)

if libcap.found() and get_option('enable_libcap')
  add_project_arguments('-DHAS_LIBCAP', language: 'c')
endif

if systemd.found() and get_option('enable_systemd')
  add_project_arguments('-DHAS_SYSTEMD', language: 'c')
endif

subdir('protocol')
subdir('backend')
subdir('render')
subdir('types')
subdir('util')
subdir('xcursor')
subdir('xwayland')

wlr_deps = [
  wayland_server,
  wayland_client,
  wayland_egl,
  wayland_protos,
  egl,
  glesv2,
  drm,
  gbm,
  libinput,
  xkbcommon,
  udev,
  pixman,
  xcb,
  xcb_composite,
  libcap,
  systemd,
  math,
]

lib_wlr = library('wlroots', files('dummy.c'),
  link_whole: [
    lib_wl_protos,
    lib_wlr_backend,
    lib_wlr_render,
    lib_wlr_types,
    lib_wlr_util,
    lib_wlr_xcursor,
    lib_wlr_xwayland,
  ],
  dependencies: wlr_deps,
  include_directories: wlr_inc)

wlroots = declare_dependency(link_with: lib_wlr,
  dependencies: wlr_deps,
  include_directories: wlr_inc)

subdir('examples')