2017-07-17 20:38:28 +02:00
|
|
|
project('wlroots', 'c',
|
2017-08-13 14:26:32 +02:00
|
|
|
license: 'MIT',
|
|
|
|
default_options: 'c_std=c11')
|
2017-07-17 20:38:28 +02:00
|
|
|
|
|
|
|
add_project_arguments('-Wall', '-Wextra', '-Wno-unused-parameter', '-Werror', 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')
|
|
|
|
|
|
|
|
#add_project_arguments('-flto', language: 'c')
|
|
|
|
#add_project_link_arguments('-flto', language: 'c')
|
|
|
|
|
|
|
|
cc = meson.get_compiler('c')
|
|
|
|
|
|
|
|
# Clang complains about some zeroed initialiser lists (= {0}), even though they are valid
|
|
|
|
if cc.get_id() == 'clang'
|
2017-08-13 14:26:32 +02:00
|
|
|
add_project_arguments('-Wno-missing-field-initializers', language: 'c')
|
|
|
|
add_project_arguments('-Wno-missing-braces', language: 'c')
|
2017-07-17 20:38:28 +02:00
|
|
|
endif
|
|
|
|
|
2017-08-11 15:37:09 +02:00
|
|
|
wayland_server = dependency('wayland-server')
|
|
|
|
wayland_client = dependency('wayland-client')
|
2017-08-13 14:26:32 +02:00
|
|
|
wayland_egl = dependency('wayland-egl')
|
2017-08-11 15:37:09 +02:00
|
|
|
wayland_protos = dependency('wayland-protocols')
|
2017-08-13 14:26:32 +02:00
|
|
|
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')
|
|
|
|
libcap = dependency('libcap', required: false)
|
|
|
|
systemd = dependency('libsystemd', required: false)
|
|
|
|
math = cc.find_library('m', required: false)
|
2017-07-17 20:38:28 +02:00
|
|
|
|
2017-08-11 15:37:09 +02:00
|
|
|
if libcap.found()
|
2017-08-13 14:26:32 +02:00
|
|
|
add_project_arguments('-DHAS_LIBCAP', language: 'c')
|
2017-07-17 20:38:28 +02:00
|
|
|
endif
|
|
|
|
|
2017-08-11 15:37:09 +02:00
|
|
|
if systemd.found()
|
2017-08-13 14:26:32 +02:00
|
|
|
add_project_arguments('-DHAS_SYSTEMD', language: 'c')
|
2017-07-17 20:38:28 +02:00
|
|
|
endif
|
|
|
|
|
2017-08-11 15:37:09 +02:00
|
|
|
subdir('protocol')
|
2017-07-17 20:38:28 +02:00
|
|
|
subdir('backend')
|
|
|
|
subdir('render')
|
|
|
|
subdir('types')
|
|
|
|
subdir('util')
|
2017-08-08 03:13:04 +02:00
|
|
|
subdir('xcursor')
|
2017-07-17 20:38:28 +02:00
|
|
|
|
2017-08-11 15:37:09 +02:00
|
|
|
_wlr_deps = [
|
2017-08-13 14:26:32 +02:00
|
|
|
wayland_server,
|
|
|
|
wayland_client,
|
|
|
|
wayland_egl,
|
|
|
|
wayland_protos,
|
|
|
|
egl,
|
|
|
|
glesv2,
|
|
|
|
drm,
|
|
|
|
gbm,
|
|
|
|
libinput,
|
|
|
|
xkbcommon,
|
|
|
|
udev,
|
|
|
|
pixman,
|
|
|
|
libcap,
|
|
|
|
systemd,
|
|
|
|
math,
|
2017-08-11 15:37:09 +02:00
|
|
|
]
|
|
|
|
|
2017-08-13 14:21:57 +02:00
|
|
|
lib_wlr = library('wlroots', files('dummy.c'),
|
2017-08-13 14:26:32 +02:00
|
|
|
link_whole: [
|
|
|
|
lib_wl_protos,
|
|
|
|
lib_wlr_backend,
|
|
|
|
lib_wlr_render,
|
|
|
|
lib_wlr_types,
|
|
|
|
lib_wlr_util,
|
|
|
|
lib_wlr_xcursor,
|
|
|
|
],
|
|
|
|
dependencies: _wlr_deps,
|
|
|
|
include_directories: wlr_inc)
|
2017-08-11 15:37:09 +02:00
|
|
|
|
|
|
|
wlroots = declare_dependency(link_with: lib_wlr,
|
2017-08-13 14:26:32 +02:00
|
|
|
dependencies: _wlr_deps,
|
|
|
|
include_directories: wlr_inc)
|
2017-07-17 20:38:28 +02:00
|
|
|
|
|
|
|
subdir('examples')
|