2018-01-07 20:42:33 +01:00
|
|
|
threads = dependency('threads')
|
2018-03-30 23:26:58 +02:00
|
|
|
wayland_cursor = dependency('wayland-cursor')
|
2018-07-01 00:16:53 +02:00
|
|
|
libpng = dependency('libpng', required: false)
|
2018-06-26 10:14:08 +02:00
|
|
|
# These versions correspond to ffmpeg 4.0
|
|
|
|
libavutil = dependency('libavutil', version: '>=56.14.100', required: false)
|
|
|
|
libavcodec = dependency('libavcodec', version: '>=58.18.100', required: false)
|
|
|
|
libavformat = dependency('libavformat', version: '>=58.12.100', required: false)
|
2018-05-27 05:03:29 +02:00
|
|
|
|
2018-10-17 10:55:53 +02:00
|
|
|
# epoll is a separate library in FreeBSD
|
|
|
|
if host_machine.system() == 'freebsd'
|
|
|
|
libepoll = [dependency('epoll-shim')]
|
|
|
|
else
|
|
|
|
libepoll = []
|
|
|
|
endif
|
|
|
|
|
2018-08-24 09:35:02 +02:00
|
|
|
# Small hack until https://github.com/mesonbuild/meson/pull/3386/ is merged
|
|
|
|
foreach dep : ['libpng', 'libavutil', 'libavcodec', 'libavformat']
|
|
|
|
if not get_variable(dep).found()
|
|
|
|
set_variable(dep, disabler())
|
|
|
|
endif
|
|
|
|
endforeach
|
|
|
|
|
2018-06-26 07:22:15 +02:00
|
|
|
if not cc.has_header('libavutil/hwcontext_drm.h', dependencies: libavutil)
|
2018-08-24 09:35:02 +02:00
|
|
|
libavutil = disabler()
|
2018-06-26 07:22:15 +02:00
|
|
|
endif
|
|
|
|
|
2018-08-24 09:35:02 +02:00
|
|
|
examples = {
|
|
|
|
'simple': {
|
|
|
|
'src': 'simple.c',
|
2018-08-30 18:53:28 +02:00
|
|
|
'dep': [wlroots],
|
2018-08-24 09:35:02 +02:00
|
|
|
},
|
|
|
|
'pointer': {
|
|
|
|
'src': 'pointer.c',
|
2018-08-30 18:53:28 +02:00
|
|
|
'dep': [wlroots],
|
2018-08-24 09:35:02 +02:00
|
|
|
},
|
|
|
|
'touch': {
|
|
|
|
'src': ['touch.c', 'cat.c'],
|
2018-08-30 18:53:28 +02:00
|
|
|
'dep': [wlroots],
|
2018-08-24 09:35:02 +02:00
|
|
|
},
|
|
|
|
'tablet': {
|
|
|
|
'src': 'tablet.c',
|
2018-08-30 18:53:28 +02:00
|
|
|
'dep': [wlroots],
|
2018-08-24 09:35:02 +02:00
|
|
|
},
|
|
|
|
'rotation': {
|
|
|
|
'src': ['rotation.c', 'cat.c'],
|
2018-08-30 18:53:28 +02:00
|
|
|
'dep': [wlroots],
|
2018-08-24 09:35:02 +02:00
|
|
|
},
|
|
|
|
'multi-pointer': {
|
|
|
|
'src': 'multi-pointer.c',
|
2018-08-30 18:53:28 +02:00
|
|
|
'dep': [wlroots],
|
2018-08-24 09:35:02 +02:00
|
|
|
},
|
|
|
|
'output-layout': {
|
|
|
|
'src': ['output-layout.c', 'cat.c'],
|
2018-08-30 18:53:28 +02:00
|
|
|
'dep': [wlroots],
|
2018-08-24 09:35:02 +02:00
|
|
|
},
|
|
|
|
'screenshot': {
|
|
|
|
'src': 'screenshot.c',
|
2018-11-05 22:51:23 +01:00
|
|
|
'dep': [wayland_client, wlr_protos, rt],
|
2018-08-24 09:35:02 +02:00
|
|
|
},
|
|
|
|
'idle': {
|
|
|
|
'src': 'idle.c',
|
2018-11-06 08:09:26 +01:00
|
|
|
'dep': [wayland_client, wlr_protos, threads],
|
2018-08-24 09:35:02 +02:00
|
|
|
},
|
|
|
|
'idle-inhibit': {
|
|
|
|
'src': 'idle-inhibit.c',
|
|
|
|
'dep': [wayland_client, wlr_protos, wlroots],
|
|
|
|
},
|
|
|
|
'layer-shell': {
|
|
|
|
'src': 'layer-shell.c',
|
|
|
|
'dep': [wayland_client, wayland_cursor, wlr_protos, wlroots],
|
|
|
|
},
|
|
|
|
'input-inhibitor': {
|
|
|
|
'src': 'input-inhibitor.c',
|
|
|
|
'dep': [wayland_client, wayland_cursor, wlr_protos, wlroots],
|
|
|
|
},
|
|
|
|
'gamma-control': {
|
|
|
|
'src': 'gamma-control.c',
|
2018-11-06 08:09:26 +01:00
|
|
|
'dep': [wayland_client, wayland_cursor, wlr_protos, math],
|
2018-08-24 09:35:02 +02:00
|
|
|
},
|
2018-08-10 18:19:16 +02:00
|
|
|
'pointer-constraints': {
|
|
|
|
'src': 'pointer-constraints.c',
|
|
|
|
'dep': [wayland_client, wlr_protos, wlroots],
|
|
|
|
},
|
2018-10-03 07:16:24 +02:00
|
|
|
'relative-pointer': {
|
|
|
|
'src': 'relative-pointer-unstable-v1.c',
|
|
|
|
'dep': [wayland_client, wlr_protos, wlroots],
|
|
|
|
},
|
2018-08-24 09:35:02 +02:00
|
|
|
'dmabuf-capture': {
|
|
|
|
'src': 'dmabuf-capture.c',
|
|
|
|
'dep': [
|
|
|
|
libavcodec,
|
|
|
|
libavformat,
|
|
|
|
libavutil,
|
2018-10-15 22:34:23 +02:00
|
|
|
drm.partial_dependency(compile_args: true), # <drm_fourcc.h>
|
2018-08-24 09:35:02 +02:00
|
|
|
threads,
|
|
|
|
wayland_client,
|
|
|
|
wlr_protos,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
'screencopy': {
|
|
|
|
'src': 'screencopy.c',
|
2018-11-05 22:51:23 +01:00
|
|
|
'dep': [libpng, wayland_client, wlr_protos, rt],
|
2018-08-24 09:35:02 +02:00
|
|
|
},
|
|
|
|
'toplevel-decoration': {
|
|
|
|
'src': 'toplevel-decoration.c',
|
|
|
|
'dep': [wayland_client, wlr_protos, wlroots],
|
|
|
|
},
|
2018-08-23 11:38:39 +02:00
|
|
|
'input-method': {
|
2018-11-06 08:09:26 +01:00
|
|
|
'src': 'input-method.c',
|
|
|
|
'dep': [wayland_client, wlr_protos] + libepoll,
|
|
|
|
},
|
2018-03-29 19:41:33 +02:00
|
|
|
'text-input': {
|
2018-11-06 08:09:26 +01:00
|
|
|
'src': 'text-input.c',
|
|
|
|
'dep': [wayland_cursor, wayland_client, wlr_protos, wlroots],
|
2019-01-06 12:08:45 +01:00
|
|
|
},
|
2018-11-29 11:31:17 +01:00
|
|
|
'foreign-toplevel': {
|
|
|
|
'src': 'foreign-toplevel.c',
|
|
|
|
'dep': [wayland_client, wlr_protos, wlroots],
|
2018-11-06 08:09:26 +01:00
|
|
|
},
|
2019-01-06 12:08:45 +01:00
|
|
|
'fullscreen-shell': {
|
|
|
|
'src': 'fullscreen-shell.c',
|
|
|
|
'dep': [wlr_protos, wlroots],
|
|
|
|
},
|
2018-08-24 09:35:02 +02:00
|
|
|
}
|
2018-05-27 05:03:29 +02:00
|
|
|
|
2018-08-24 09:35:02 +02:00
|
|
|
foreach name, info : examples
|
2018-08-30 18:53:28 +02:00
|
|
|
all_dep_found = true
|
|
|
|
foreach d : info.get('dep')
|
|
|
|
all_dep_found = all_dep_found and d.found()
|
|
|
|
endforeach
|
|
|
|
if all_dep_found
|
|
|
|
executable(
|
|
|
|
name,
|
|
|
|
info.get('src'),
|
|
|
|
dependencies: info.get('dep'),
|
|
|
|
build_by_default: get_option('examples'),
|
|
|
|
)
|
|
|
|
else
|
|
|
|
warning('Dependencies not satisfied for ' + name)
|
|
|
|
endif
|
2018-08-24 09:35:02 +02:00
|
|
|
endforeach
|