2017-08-30 20:30:47 +02:00
|
|
|
project(
|
|
|
|
'wlroots',
|
|
|
|
'c',
|
2019-05-03 17:55:46 +02:00
|
|
|
version: '0.6.0',
|
2017-08-30 20:30:47 +02:00
|
|
|
license: 'MIT',
|
2018-09-28 14:40:15 +02:00
|
|
|
meson_version: '>=0.48.0',
|
2017-08-30 20:30:47 +02:00
|
|
|
default_options: [
|
|
|
|
'c_std=c11',
|
|
|
|
'warning_level=2',
|
|
|
|
'werror=true',
|
|
|
|
],
|
|
|
|
)
|
2017-07-17 20:38:28 +02:00
|
|
|
|
2017-12-27 17:06:52 +01:00
|
|
|
# Format of so_version is CURRENT, REVISION, AGE.
|
|
|
|
# See: https://autotools.io/libtool/version.html
|
|
|
|
# for a reference about clean library versioning.
|
2019-05-03 17:55:46 +02:00
|
|
|
so_version = ['3', '4', '1']
|
2017-12-27 17:06:52 +01:00
|
|
|
|
2019-02-28 23:15:34 +01:00
|
|
|
add_project_arguments([
|
|
|
|
'-DWLR_USE_UNSTABLE',
|
|
|
|
], language: 'c')
|
2018-11-12 10:12:46 +01:00
|
|
|
|
2019-02-28 23:15:34 +01:00
|
|
|
cc = meson.get_compiler('c')
|
|
|
|
|
|
|
|
add_project_arguments(cc.get_supported_arguments([
|
|
|
|
'-Wundef',
|
|
|
|
'-Wlogical-op',
|
|
|
|
'-Wmissing-include-dirs',
|
|
|
|
'-Wold-style-definition',
|
|
|
|
'-Wpointer-arith',
|
|
|
|
'-Winit-self',
|
|
|
|
'-Wstrict-prototypes',
|
|
|
|
'-Wimplicit-fallthrough=2',
|
|
|
|
'-Wendif-labels',
|
|
|
|
'-Wstrict-aliasing=2',
|
|
|
|
'-Woverflow',
|
|
|
|
|
|
|
|
'-Wno-missing-braces',
|
|
|
|
'-Wno-missing-field-initializers',
|
|
|
|
'-Wno-unused-parameter',
|
|
|
|
]), language: 'c')
|
2017-07-17 20:38:28 +02:00
|
|
|
|
2019-07-16 19:04:27 +02:00
|
|
|
# Compute the relative path used by compiler invocations.
|
|
|
|
source_root = meson.current_source_dir().split('/')
|
|
|
|
build_root = meson.build_root().split('/')
|
|
|
|
relative_dir_parts = []
|
|
|
|
i = 0
|
|
|
|
in_prefix = true
|
|
|
|
foreach p : build_root
|
|
|
|
if i >= source_root.length() or not in_prefix or p != source_root[i]
|
|
|
|
in_prefix = false
|
|
|
|
relative_dir_parts += '..'
|
|
|
|
endif
|
|
|
|
i += 1
|
|
|
|
endforeach
|
|
|
|
i = 0
|
|
|
|
in_prefix = true
|
|
|
|
foreach p : source_root
|
|
|
|
if i >= build_root.length() or not in_prefix or build_root[i] != p
|
|
|
|
in_prefix = false
|
|
|
|
relative_dir_parts += p
|
|
|
|
endif
|
|
|
|
i += 1
|
|
|
|
endforeach
|
|
|
|
relative_dir = join_paths(relative_dir_parts) + '/'
|
|
|
|
|
|
|
|
# Strip relative path prefixes from the code if possible, otherwise hide them.
|
|
|
|
if cc.has_argument('-fmacro-prefix-map=/prefix/to/hide=')
|
|
|
|
add_project_arguments(
|
|
|
|
'-fmacro-prefix-map=@0@='.format(relative_dir),
|
|
|
|
language: 'c',
|
|
|
|
)
|
|
|
|
else
|
|
|
|
add_project_arguments(
|
|
|
|
'-DWLR_REL_SRC_DIR="@0@"'.format(relative_dir),
|
|
|
|
language: 'c',
|
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
2017-12-26 18:51:27 +01:00
|
|
|
conf_data = configuration_data()
|
2018-11-12 10:12:46 +01:00
|
|
|
conf_data.set10('WLR_HAS_LIBCAP', false)
|
|
|
|
conf_data.set10('WLR_HAS_SYSTEMD', false)
|
|
|
|
conf_data.set10('WLR_HAS_ELOGIND', false)
|
2019-02-22 19:58:52 +01:00
|
|
|
conf_data.set10('WLR_HAS_RDP_BACKEND', false)
|
2018-11-12 10:12:46 +01:00
|
|
|
conf_data.set10('WLR_HAS_X11_BACKEND', false)
|
|
|
|
conf_data.set10('WLR_HAS_XWAYLAND', false)
|
|
|
|
conf_data.set10('WLR_HAS_XCB_ERRORS', false)
|
|
|
|
conf_data.set10('WLR_HAS_XCB_ICCCM', false)
|
2017-12-26 18:51:27 +01:00
|
|
|
|
2018-08-24 09:35:02 +02:00
|
|
|
wlr_inc = include_directories('.', 'include')
|
2017-07-17 20:38:28 +02:00
|
|
|
|
2018-01-30 16:06:45 +01:00
|
|
|
# Clang complains about some zeroed initializer lists (= {0}), even though they
|
2017-08-30 20:30:47 +02:00
|
|
|
# are valid
|
2017-07-17 20:38:28 +02:00
|
|
|
if cc.get_id() == 'clang'
|
2017-08-30 20:30:47 +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
|
|
|
|
|
2018-08-28 10:19:57 +02:00
|
|
|
wayland_server = dependency('wayland-server', version: '>=1.16')
|
2017-08-11 15:37:09 +02:00
|
|
|
wayland_client = dependency('wayland-client')
|
2017-08-20 12:19:47 +02:00
|
|
|
wayland_egl = dependency('wayland-egl')
|
2019-01-24 12:04:41 +01:00
|
|
|
wayland_protos = dependency('wayland-protocols', version: '>=1.17')
|
2017-08-20 12:19:47 +02:00
|
|
|
egl = dependency('egl')
|
2019-02-22 19:58:52 +01:00
|
|
|
freerdp = dependency('freerdp2', required: get_option('freerdp'))
|
|
|
|
winpr2 = dependency('winpr2', required: get_option('freerdp'))
|
2017-08-20 12:19:47 +02:00
|
|
|
glesv2 = dependency('glesv2')
|
2019-01-29 19:33:38 +01:00
|
|
|
drm = dependency('libdrm', version: '>=2.4.95')
|
2017-10-08 02:55:12 +02:00
|
|
|
gbm = dependency('gbm', version: '>=17.1.0')
|
2019-03-22 12:52:46 +01:00
|
|
|
libinput = dependency('libinput', version: '>=1.9.0')
|
2017-08-20 12:19:47 +02:00
|
|
|
xkbcommon = dependency('xkbcommon')
|
|
|
|
udev = dependency('libudev')
|
|
|
|
pixman = dependency('pixman-1')
|
2018-08-24 09:35:02 +02:00
|
|
|
libcap = dependency('libcap', required: get_option('libcap'))
|
2018-10-08 00:26:35 +02:00
|
|
|
logind = dependency('lib' + get_option('logind-provider'), required: get_option('logind'), version: '>=237')
|
2018-10-26 18:38:23 +02:00
|
|
|
math = cc.find_library('m')
|
|
|
|
rt = cc.find_library('rt')
|
2017-07-17 20:38:28 +02:00
|
|
|
|
2018-02-10 11:30:47 +01:00
|
|
|
wlr_parts = []
|
|
|
|
wlr_deps = []
|
|
|
|
|
2018-08-24 09:35:02 +02:00
|
|
|
if libcap.found()
|
2018-11-12 10:12:46 +01:00
|
|
|
conf_data.set10('WLR_HAS_LIBCAP', true)
|
2018-02-10 11:30:47 +01:00
|
|
|
wlr_deps += libcap
|
2017-07-17 20:38:28 +02:00
|
|
|
endif
|
|
|
|
|
2018-08-24 09:35:02 +02:00
|
|
|
if logind.found()
|
2018-11-12 10:12:46 +01:00
|
|
|
conf_data.set10('WLR_HAS_' + get_option('logind-provider').to_upper(), true)
|
2018-08-24 09:35:02 +02:00
|
|
|
wlr_deps += logind
|
2017-09-22 19:02:55 +02:00
|
|
|
endif
|
|
|
|
|
2019-08-09 03:18:54 +02:00
|
|
|
if libinput.found()
|
|
|
|
ver = libinput.version().split('.')
|
|
|
|
add_project_arguments([
|
|
|
|
'-DLIBINPUT_MAJOR=' + ver[0],
|
|
|
|
'-DLIBINPUT_MINOR=' + ver[1],
|
|
|
|
'-DLIBINPUT_PATCH=' + ver[2],
|
|
|
|
], language: 'c')
|
|
|
|
endif
|
|
|
|
|
2018-08-22 10:27:37 +02:00
|
|
|
subdir('protocol')
|
|
|
|
subdir('render')
|
2018-08-24 09:35:02 +02:00
|
|
|
|
2018-08-22 11:14:07 +02:00
|
|
|
subdir('backend')
|
2017-07-17 20:38:28 +02:00
|
|
|
subdir('types')
|
|
|
|
subdir('util')
|
2017-08-08 03:13:04 +02:00
|
|
|
subdir('xcursor')
|
2018-08-24 09:35:02 +02:00
|
|
|
subdir('xwayland')
|
|
|
|
|
|
|
|
subdir('include')
|
2017-10-06 23:50:25 +02:00
|
|
|
|
|
|
|
wlr_parts += [
|
|
|
|
lib_wl_protos,
|
|
|
|
lib_wlr_backend,
|
|
|
|
lib_wlr_render,
|
|
|
|
lib_wlr_types,
|
|
|
|
lib_wlr_util,
|
|
|
|
lib_wlr_xcursor,
|
|
|
|
]
|
2017-07-17 20:38:28 +02:00
|
|
|
|
2018-02-10 11:30:47 +01:00
|
|
|
wlr_deps += [
|
2017-08-30 20:30:47 +02:00
|
|
|
wayland_server,
|
|
|
|
wayland_client,
|
|
|
|
wayland_egl,
|
|
|
|
wayland_protos,
|
|
|
|
egl,
|
|
|
|
glesv2,
|
|
|
|
drm,
|
|
|
|
gbm,
|
|
|
|
libinput,
|
|
|
|
xkbcommon,
|
|
|
|
udev,
|
|
|
|
pixman,
|
|
|
|
math,
|
2017-08-11 15:37:09 +02:00
|
|
|
]
|
|
|
|
|
2018-02-20 08:06:51 +01:00
|
|
|
symbols_file = 'wlroots.syms'
|
|
|
|
symbols_flag = '-Wl,--version-script,@0@/@1@'.format(meson.current_source_dir(), symbols_file)
|
2017-08-30 20:30:47 +02:00
|
|
|
lib_wlr = library(
|
2017-12-27 17:06:52 +01:00
|
|
|
meson.project_name(),
|
|
|
|
version: '.'.join(so_version),
|
2017-10-06 23:50:25 +02:00
|
|
|
link_whole: wlr_parts,
|
2017-08-30 20:30:47 +02:00
|
|
|
dependencies: wlr_deps,
|
|
|
|
include_directories: wlr_inc,
|
2017-09-24 02:57:15 +02:00
|
|
|
install: true,
|
2018-02-20 08:06:51 +01:00
|
|
|
link_args : symbols_flag,
|
2018-08-24 09:35:02 +02:00
|
|
|
link_depends: symbols_file,
|
2017-08-30 20:30:47 +02:00
|
|
|
)
|
2017-08-11 15:37:09 +02:00
|
|
|
|
2017-08-30 20:30:47 +02:00
|
|
|
wlroots = declare_dependency(
|
|
|
|
link_with: lib_wlr,
|
|
|
|
dependencies: wlr_deps,
|
|
|
|
include_directories: wlr_inc,
|
|
|
|
)
|
2017-07-17 20:38:28 +02:00
|
|
|
|
2018-01-24 17:56:08 +01:00
|
|
|
summary = [
|
2018-02-12 21:29:23 +01:00
|
|
|
'',
|
|
|
|
'----------------',
|
|
|
|
'wlroots @0@'.format(meson.project_version()),
|
|
|
|
'',
|
2018-03-09 15:17:15 +01:00
|
|
|
' libcap: @0@'.format(conf_data.get('WLR_HAS_LIBCAP', false)),
|
|
|
|
' systemd: @0@'.format(conf_data.get('WLR_HAS_SYSTEMD', false)),
|
|
|
|
' elogind: @0@'.format(conf_data.get('WLR_HAS_ELOGIND', false)),
|
|
|
|
' xwayland: @0@'.format(conf_data.get('WLR_HAS_XWAYLAND', false)),
|
2019-02-22 19:58:52 +01:00
|
|
|
' rdp_backend: @0@'.format(conf_data.get('WLR_HAS_RDP_BACKEND', false)),
|
2018-03-23 10:28:36 +01:00
|
|
|
' x11_backend: @0@'.format(conf_data.get('WLR_HAS_X11_BACKEND', false)),
|
2018-03-09 15:17:15 +01:00
|
|
|
' xcb-icccm: @0@'.format(conf_data.get('WLR_HAS_XCB_ICCCM', false)),
|
|
|
|
' xcb-errors: @0@'.format(conf_data.get('WLR_HAS_XCB_ERRORS', false)),
|
2018-02-12 21:29:23 +01:00
|
|
|
'----------------',
|
|
|
|
''
|
2018-01-24 17:56:08 +01:00
|
|
|
]
|
|
|
|
message('\n'.join(summary))
|
|
|
|
|
2018-08-24 09:35:02 +02:00
|
|
|
subdir('examples')
|
2018-08-22 10:41:25 +02:00
|
|
|
|
2017-09-24 02:57:15 +02:00
|
|
|
pkgconfig = import('pkgconfig')
|
|
|
|
pkgconfig.generate(
|
|
|
|
libraries: lib_wlr,
|
2017-12-27 15:56:07 +01:00
|
|
|
version: meson.project_version(),
|
|
|
|
filebase: meson.project_name(),
|
|
|
|
name: meson.project_name(),
|
2017-09-24 02:57:15 +02:00
|
|
|
description: 'Wayland compositor library',
|
|
|
|
)
|
2018-01-26 15:46:29 +01:00
|
|
|
|
|
|
|
git = find_program('git', required: false)
|
|
|
|
if git.found()
|
|
|
|
all_files = run_command(
|
|
|
|
git,
|
2018-08-24 09:35:02 +02:00
|
|
|
'--git-dir=@0@/.git'.format(meson.current_source_dir()),
|
|
|
|
'ls-files',
|
|
|
|
':/*.[ch]',
|
|
|
|
)
|
2018-01-26 15:46:29 +01:00
|
|
|
all_files = files(all_files.stdout().split())
|
|
|
|
|
|
|
|
etags = find_program('etags', required: false)
|
|
|
|
if etags.found() and all_files.length() > 0
|
2018-08-24 09:35:02 +02:00
|
|
|
custom_target(
|
|
|
|
'etags',
|
2018-02-12 21:29:23 +01:00
|
|
|
build_by_default: true,
|
|
|
|
input: all_files,
|
|
|
|
output: 'TAGS',
|
2018-08-24 09:35:02 +02:00
|
|
|
command: [etags, '-o', '@OUTPUT@', '@INPUT@'],
|
|
|
|
)
|
2018-01-26 15:46:29 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ctags = find_program('ctags', required: false)
|
|
|
|
if ctags.found() and all_files.length() > 0
|
2018-08-24 09:35:02 +02:00
|
|
|
custom_target(
|
|
|
|
'ctags',
|
2018-02-12 21:29:23 +01:00
|
|
|
build_by_default: true,
|
|
|
|
input: all_files,
|
|
|
|
output: 'tags',
|
2018-08-24 09:35:02 +02:00
|
|
|
command: [ctags, '-f', '@OUTPUT@', '@INPUT@'],
|
|
|
|
)
|
2018-01-26 15:46:29 +01:00
|
|
|
endif
|
|
|
|
endif
|