labwc/meson.build

97 lines
2.2 KiB
Meson
Raw Normal View History

2020-05-20 22:04:22 +01:00
project(
'labwc',
'c',
version: '0.1.0',
2020-05-20 22:04:22 +01:00
license: 'GPL-2',
default_options: [
'c_std=c11',
'warning_level=2',
],
)
add_project_arguments(
[
'-DWLR_USE_UNSTABLE',
],
language: 'c',
)
cc = meson.get_compiler('c')
2020-05-27 14:29:05 +01:00
add_project_arguments(cc.get_supported_arguments(
[
'-Wno-unused-parameter',
'-Wundef',
]),
language: 'c',
)
2020-05-20 22:04:22 +01:00
version='"@0@"'.format(meson.project_version())
add_project_arguments('-DLABWC_VERSION=@0@'.format(version), language: 'c')
2020-05-20 22:04:22 +01:00
wlroots_proj = subproject(
2020-05-27 14:29:05 +01:00
'wlroots',
default_options: ['examples=false'],
required: false,
2020-05-20 22:04:22 +01:00
)
2020-05-27 14:29:05 +01:00
2020-05-20 22:04:22 +01:00
if wlroots_proj.found()
2020-05-27 14:29:05 +01:00
wlroots = wlroots_proj.get_variable('wlroots')
2020-12-30 10:29:21 +00:00
wlroots_conf = wlroots_proj.get_variable('conf_data')
wlroots_has_xwayland = wlroots_conf.get('WLR_HAS_XWAYLAND') == 1
2020-05-20 22:04:22 +01:00
else
wlroots = dependency('wlroots', version: '>= 0.13.0')
2020-12-30 10:29:21 +00:00
wlroots_has_xwayland = cc.get_define('WLR_HAS_XWAYLAND', prefix: '#include <wlr/config.h>', dependencies: wlroots) == '1'
2020-05-20 22:04:22 +01:00
endif
2020-05-27 14:29:05 +01:00
wayland_server = dependency('wayland-server')
wayland_protos = dependency('wayland-protocols')
xkbcommon = dependency('xkbcommon')
2020-12-30 10:29:21 +00:00
xcb = dependency('xcb', required: get_option('xwayland'))
drm_full = dependency('libdrm')
drm = drm_full.partial_dependency(compile_args: true, includes: true)
2020-06-05 23:04:54 +01:00
xml2 = dependency('libxml-2.0')
2020-06-16 07:21:53 +01:00
glib = dependency('glib-2.0')
2020-06-29 19:27:59 +01:00
cairo = dependency('cairo')
pangocairo = dependency('pangocairo')
input = dependency('libinput', version: '>=1.14')
2021-01-09 22:51:20 +00:00
pixman = dependency('pixman-1')
2021-01-12 16:47:26 +00:00
math = cc.find_library('m')
2020-05-20 22:04:22 +01:00
2020-12-30 10:29:21 +00:00
if get_option('xwayland').enabled() and not wlroots_has_xwayland
error('no wlroots Xwayland support')
endif
have_xwayland = xcb.found() and wlroots_has_xwayland
conf_data = configuration_data()
conf_data.set10('HAVE_XWAYLAND', have_xwayland)
2020-05-27 14:29:05 +01:00
labwc_inc = include_directories('include')
2020-05-20 22:04:22 +01:00
subdir('protocols')
2020-06-05 23:04:54 +01:00
labwc_deps = [
server_protos,
wayland_server,
wlroots,
xkbcommon,
xml2,
glib,
cairo,
drm,
pangocairo,
input,
pixman,
math,
2020-06-05 23:04:54 +01:00
]
2020-05-20 22:04:22 +01:00
2020-12-30 10:29:21 +00:00
subdir('include')
subdir('src')
subdir('docs')
2020-05-20 22:04:22 +01:00
executable(
meson.project_name(),
2020-05-27 14:29:05 +01:00
labwc_sources,
include_directories: [labwc_inc],
dependencies: labwc_deps,
2020-05-20 22:04:22 +01:00
install: true,
)