mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-12-15 08:56:26 -05:00
Refactor meson build files
Use tabs for indentation and break up function calls over 80 col.
This commit is contained in:
parent
6daf9e9ab2
commit
368f74e4df
9 changed files with 209 additions and 151 deletions
107
meson.build
107
meson.build
|
|
@ -1,23 +1,33 @@
|
|||
project('wlroots', 'c',
|
||||
license: 'MIT',
|
||||
default_options: [
|
||||
'c_std=c11',
|
||||
'warning_level=2',
|
||||
'werror=true',
|
||||
])
|
||||
project(
|
||||
'wlroots',
|
||||
'c',
|
||||
license: 'MIT',
|
||||
default_options: [
|
||||
'c_std=c11',
|
||||
'warning_level=2',
|
||||
'werror=true',
|
||||
],
|
||||
)
|
||||
|
||||
add_project_arguments('-Wno-unused-parameter', language: 'c')
|
||||
add_project_arguments('-DWLR_SRC_DIR="@0@"'.format(meson.source_root()), language: 'c')
|
||||
add_project_link_arguments('-Wl,-rpath,@0@'.format(meson.build_root()), language: 'c')
|
||||
add_project_arguments(
|
||||
'-DWLR_SRC_DIR="@0@"'.format(meson.source_root()),
|
||||
language: 'c',
|
||||
)
|
||||
add_project_link_arguments(
|
||||
'-Wl,-rpath,@0@'.format(meson.build_root()),
|
||||
language: 'c',
|
||||
)
|
||||
|
||||
wlr_inc = include_directories('include')
|
||||
|
||||
cc = meson.get_compiler('c')
|
||||
|
||||
# Clang complains about some zeroed initialiser lists (= {0}), even though they are valid
|
||||
# Clang complains about some zeroed initialiser lists (= {0}), even though they
|
||||
# are valid
|
||||
if cc.get_id() == 'clang'
|
||||
add_project_arguments('-Wno-missing-field-initializers', language: 'c')
|
||||
add_project_arguments('-Wno-missing-braces', language: 'c')
|
||||
add_project_arguments('-Wno-missing-field-initializers', language: 'c')
|
||||
add_project_arguments('-Wno-missing-braces', language: 'c')
|
||||
endif
|
||||
|
||||
wayland_server = dependency('wayland-server')
|
||||
|
|
@ -39,11 +49,11 @@ systemd = dependency('libsystemd', required: false)
|
|||
math = cc.find_library('m', required: false)
|
||||
|
||||
if libcap.found() and get_option('enable_libcap')
|
||||
add_project_arguments('-DHAS_LIBCAP', language: 'c')
|
||||
add_project_arguments('-DHAS_LIBCAP', language: 'c')
|
||||
endif
|
||||
|
||||
if systemd.found() and get_option('enable_systemd')
|
||||
add_project_arguments('-DHAS_SYSTEMD', language: 'c')
|
||||
add_project_arguments('-DHAS_SYSTEMD', language: 'c')
|
||||
endif
|
||||
|
||||
subdir('protocol')
|
||||
|
|
@ -55,40 +65,45 @@ subdir('xcursor')
|
|||
subdir('xwayland')
|
||||
|
||||
wlr_deps = [
|
||||
wayland_server,
|
||||
wayland_client,
|
||||
wayland_egl,
|
||||
wayland_protos,
|
||||
egl,
|
||||
glesv2,
|
||||
drm,
|
||||
gbm,
|
||||
libinput,
|
||||
xkbcommon,
|
||||
udev,
|
||||
pixman,
|
||||
xcb,
|
||||
xcb_composite,
|
||||
libcap,
|
||||
systemd,
|
||||
math,
|
||||
wayland_server,
|
||||
wayland_client,
|
||||
wayland_egl,
|
||||
wayland_protos,
|
||||
egl,
|
||||
glesv2,
|
||||
drm,
|
||||
gbm,
|
||||
libinput,
|
||||
xkbcommon,
|
||||
udev,
|
||||
pixman,
|
||||
xcb,
|
||||
xcb_composite,
|
||||
libcap,
|
||||
systemd,
|
||||
math,
|
||||
]
|
||||
|
||||
lib_wlr = library('wlroots', files('dummy.c'),
|
||||
link_whole: [
|
||||
lib_wl_protos,
|
||||
lib_wlr_backend,
|
||||
lib_wlr_render,
|
||||
lib_wlr_types,
|
||||
lib_wlr_util,
|
||||
lib_wlr_xcursor,
|
||||
lib_wlr_xwayland,
|
||||
],
|
||||
dependencies: wlr_deps,
|
||||
include_directories: wlr_inc)
|
||||
lib_wlr = library(
|
||||
'wlroots',
|
||||
files('dummy.c'),
|
||||
link_whole: [
|
||||
lib_wl_protos,
|
||||
lib_wlr_backend,
|
||||
lib_wlr_render,
|
||||
lib_wlr_types,
|
||||
lib_wlr_util,
|
||||
lib_wlr_xcursor,
|
||||
lib_wlr_xwayland,
|
||||
],
|
||||
dependencies: wlr_deps,
|
||||
include_directories: wlr_inc,
|
||||
)
|
||||
|
||||
wlroots = declare_dependency(link_with: lib_wlr,
|
||||
dependencies: wlr_deps,
|
||||
include_directories: wlr_inc)
|
||||
wlroots = declare_dependency(
|
||||
link_with: lib_wlr,
|
||||
dependencies: wlr_deps,
|
||||
include_directories: wlr_inc,
|
||||
)
|
||||
|
||||
subdir('examples')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue