labwc/meson.build

148 lines
3.4 KiB
Meson
Raw Normal View History

2020-05-20 22:04:22 +01:00
project(
'labwc',
'c',
2024-07-12 17:23:47 +01:00
version: '0.7.3',
2021-09-01 12:03:12 +02:00
license: 'GPL-2.0-only',
meson_version: '>=0.59.0',
2020-05-20 22:04:22 +01:00
default_options: [
'c_std=c11',
'warning_level=2',
],
)
add_project_arguments(
[
'-DWLR_USE_UNSTABLE',
],
language: 'c',
)
cc = meson.get_compiler('c')
2023-01-31 03:35:13 +01:00
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',
'-Wmissing-prototypes',
'-Walloca',
'-Wunused-macros',
'-Wno-unused-parameter',
]), language: 'c')
2020-05-20 22:04:22 +01:00
version='"@0@"'.format(meson.project_version())
git = find_program('git', native: true, required: false)
if git.found()
git_commit = run_command([git, 'describe', '--dirty'], check: false)
if git_commit.returncode() == 0
version = '"@0@"'.format(git_commit.stdout().strip())
endif
endif
add_project_arguments('-DLABWC_VERSION=@0@'.format(version), language: 'c')
wlroots = dependency(
2020-05-27 14:29:05 +01:00
'wlroots',
default_options: ['default_library=static', 'examples=false'],
version: ['>=0.17.0', '<0.18.0'],
2020-05-20 22:04:22 +01:00
)
2020-05-27 14:29:05 +01:00
wlroots_has_xwayland = wlroots.get_variable('have_xwayland') == 'true'
2021-06-26 18:23:46 +01:00
wayland_server = dependency('wayland-server', version: '>=1.19.0')
wayland_protos = dependency('wayland-protocols')
xkbcommon = dependency('xkbcommon')
xcb = dependency('xcb', required: get_option('xwayland'))
2022-04-20 18:48:49 +01:00
xcb_icccm = dependency('xcb-icccm', required: get_option('xwayland'))
2021-06-26 18:23:46 +01:00
drm_full = dependency('libdrm')
drm = drm_full.partial_dependency(compile_args: true, includes: true)
xml2 = dependency('libxml-2.0')
glib = dependency('glib-2.0')
cairo = dependency('cairo')
pangocairo = dependency('pangocairo')
input = dependency('libinput', version: '>=1.14')
pixman = dependency('pixman-1')
2021-06-26 18:23:46 +01:00
math = cc.find_library('m')
png = dependency('libpng')
svg = dependency('librsvg-2.0', version: '>=2.46', required: false)
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)
if get_option('svg').disabled()
have_rsvg = false
else
have_rsvg = svg.found()
endif
conf_data.set10('HAVE_RSVG', have_rsvg)
2024-04-08 17:32:16 +02:00
if get_option('static_analyzer').enabled()
add_project_arguments(['-fanalyzer'], language: 'c')
endif
msgfmt = find_program('msgfmt', required: get_option('nls'))
if msgfmt.found()
source_root = meson.current_source_dir()
conf_data.set('HAVE_NLS', 1)
subdir('po')
else
conf_data.set('HAVE_NLS', 0)
endif
2021-06-26 18:23:46 +01:00
labwc_inc = include_directories('include')
2020-05-20 22:04:22 +01:00
subdir('protocols')
2021-06-26 18:23:46 +01:00
labwc_deps = [
server_protos,
wayland_server,
wlroots,
xkbcommon,
2022-04-20 18:48:49 +01:00
xcb_icccm,
xml2,
glib,
cairo,
drm,
pangocairo,
input,
pixman,
math,
png,
2020-06-05 23:04:54 +01:00
]
if have_rsvg
labwc_deps += [
svg,
]
endif
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,
)
2021-07-12 21:41:12 +01:00
install_data('data/labwc.desktop', install_dir: get_option('datadir') / 'wayland-sessions')
icons = ['labwc-symbolic.svg', 'labwc.svg']
foreach icon : icons
icon_path = join_paths('data', icon)
install_data(icon_path, install_dir: get_option('datadir') / 'icons/hicolor/scalable/apps')
endforeach