wlroots/meson.build

211 lines
4.9 KiB
Meson
Raw Normal View History

project(
'wlroots',
'c',
version: '0.0.1',
license: 'MIT',
2017-11-21 23:05:44 +00:00
meson_version: '>=0.43.0',
default_options: [
'c_std=c11',
'warning_level=2',
'werror=true',
],
)
2017-07-17 18:38:28 +00:00
# Format of so_version is CURRENT, REVISION, AGE.
# See: https://autotools.io/libtool/version.html
# for a reference about clean library versioning.
so_version = ['0', '0', '0']
add_project_arguments('-Wno-unused-parameter', language: 'c')
add_project_arguments(
'-DWLR_SRC_DIR="@0@"'.format(meson.source_root()),
language: 'c',
)
2017-10-08 00:19:25 +00:00
add_project_arguments(
'-I@0@'.format(meson.build_root()),
language: 'c',
)
add_project_link_arguments(
'-Wl,-rpath,@0@'.format(meson.build_root()),
language: 'c',
)
2017-07-17 18:38:28 +00:00
2017-12-26 17:51:27 +00:00
conf_data = configuration_data()
2017-07-17 18:38:28 +00:00
wlr_inc = include_directories('include')
cc = meson.get_compiler('c')
# Clang complains about some zeroed initialiser lists (= {0}), even though they
# are valid
2017-07-17 18:38:28 +00:00
if cc.get_id() == 'clang'
add_project_arguments('-Wno-missing-field-initializers', language: 'c')
add_project_arguments('-Wno-missing-braces', language: 'c')
2017-07-17 18:38:28 +00:00
endif
2017-10-09 22:23:43 +00:00
# Avoid wl_buffer deprecation warnings
add_project_arguments('-DWL_HIDE_DEPRECATED', language: 'c')
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', version: '>=17.1.0')
libinput = dependency('libinput', version: '>=1.7.0')
xkbcommon = dependency('xkbcommon')
udev = dependency('libudev')
pixman = dependency('pixman-1')
xcb = dependency('xcb')
xcb_composite = dependency('xcb-composite')
2017-10-15 18:50:21 +00:00
xcb_xfixes = dependency('xcb-xfixes')
2017-11-01 23:03:55 +00:00
xcb_image = dependency('xcb-image')
2017-11-02 14:52:02 +00:00
xcb_render = dependency('xcb-render')
2017-10-05 10:32:12 +00:00
xcb_icccm = dependency('xcb-icccm', required: false)
2017-09-22 04:00:27 +00:00
x11_xcb = dependency('x11-xcb')
libcap = dependency('libcap', required: false)
systemd = dependency('libsystemd', required: false)
elogind = dependency('libelogind', required: false)
math = cc.find_library('m', required: false)
2017-07-17 18:38:28 +00:00
2017-10-05 10:32:12 +00:00
if xcb_icccm.found()
2017-12-26 17:51:27 +00:00
conf_data.set('WLR_HAS_XCB_ICCCM', true)
2017-10-05 10:32:12 +00:00
endif
if libcap.found() and get_option('enable_libcap')
2017-12-26 17:51:27 +00:00
conf_data.set('WLR_HAS_LIBCAP', true)
2017-07-17 18:38:28 +00:00
endif
if systemd.found() and get_option('enable_systemd')
2017-12-26 17:51:27 +00:00
conf_data.set('WLR_HAS_SYSTEMD', true)
2017-07-17 18:38:28 +00:00
endif
if elogind.found() and get_option('enable_elogind')
2017-12-26 17:51:27 +00:00
conf_data.set('WLR_HAS_ELOGIND', true)
endif
exclude_headers = []
2017-10-06 21:50:25 +00:00
wlr_parts = []
if get_option('enable_xwayland')
subdir('xwayland')
wlr_parts += [lib_wlr_xwayland]
conf_data.set('WLR_HAS_XWAYLAND', true)
else
exclude_headers += 'xwayland.h'
exclude_headers += 'xwm.h'
2017-10-06 21:50:25 +00:00
endif
exclude_headers += 'meson.build'
2017-12-28 19:38:52 +00:00
install_subdir('include/wlr', install_dir: 'include', exclude_files: exclude_headers)
2017-10-06 21:50:25 +00:00
subdir('include')
subdir('protocol')
2017-07-17 18:38:28 +00:00
subdir('render')
2017-10-08 00:19:25 +00:00
subdir('backend')
2017-07-17 18:38:28 +00:00
subdir('types')
subdir('util')
2017-08-08 01:13:04 +00:00
subdir('xcursor')
2017-10-06 21:50:25 +00:00
wlr_parts += [
lib_wl_protos,
lib_wlr_backend,
lib_wlr_render,
lib_wlr_types,
lib_wlr_util,
lib_wlr_xcursor,
]
2017-07-17 18:38:28 +00:00
wlr_deps = [
wayland_server,
wayland_client,
wayland_egl,
wayland_protos,
egl,
glesv2,
drm,
gbm,
libinput,
xkbcommon,
udev,
pixman,
xcb,
xcb_composite,
2017-09-22 04:00:27 +00:00
x11_xcb,
libcap,
systemd,
math,
]
lib_wlr = library(
meson.project_name(),
version: '.'.join(so_version),
2017-10-06 21:50:25 +00:00
link_whole: wlr_parts,
dependencies: wlr_deps,
include_directories: wlr_inc,
install: true,
)
wlroots = declare_dependency(
link_with: lib_wlr,
dependencies: wlr_deps,
include_directories: wlr_inc,
)
2017-07-17 18:38:28 +00:00
summary = [
'',
'----------------',
'wlroots @0@'.format(meson.project_version()),
'',
' libcap: @0@'.format(get_option('enable_libcap')),
' systemd: @0@'.format(get_option('enable_systemd')),
' elogind: @0@'.format(get_option('enable_elogind')),
' xwayland: @0@'.format(get_option('enable_xwayland')),
'----------------',
''
]
message('\n'.join(summary))
2017-09-23 00:24:32 +00:00
subdir('rootston')
2017-07-17 18:38:28 +00:00
subdir('examples')
pkgconfig = import('pkgconfig')
pkgconfig.generate(
libraries: lib_wlr,
version: meson.project_version(),
filebase: meson.project_name(),
name: meson.project_name(),
description: 'Wayland compositor library',
)
git = find_program('git', required: false)
if git.found()
all_files = run_command(
git,
['--git-dir=@0@/.git'.format(meson.source_root()),
'ls-files',
':/*.[ch]'])
all_files = files(all_files.stdout().split())
etags = find_program('etags', required: false)
if etags.found() and all_files.length() > 0
custom_target('etags',
build_by_default: true,
input: all_files,
output: 'TAGS',
command: [etags.path(), '-o', 'TAGS'] + all_files)
endif
ctags = find_program('ctags', required: false)
if ctags.found() and all_files.length() > 0
custom_target('ctags',
build_by_default: true,
input: all_files,
output: 'tags',
command: [ctags.path(), '-o', 'tags'] + all_files)
endif
endif