parent
6daf9e9ab2
commit
368f74e4df
@ -1,33 +1,36 @@
|
|||||||
backend_files = files(
|
backend_files = files(
|
||||||
'backend.c',
|
'backend.c',
|
||||||
'session/direct-ipc.c',
|
'session/direct-ipc.c',
|
||||||
'session/direct.c',
|
'session/direct.c',
|
||||||
'session/session.c',
|
'session/session.c',
|
||||||
'drm/backend.c',
|
'drm/backend.c',
|
||||||
'drm/drm.c',
|
'drm/drm.c',
|
||||||
'drm/drm-atomic.c',
|
'drm/drm-atomic.c',
|
||||||
'drm/drm-legacy.c',
|
'drm/drm-legacy.c',
|
||||||
'drm/drm-properties.c',
|
'drm/drm-properties.c',
|
||||||
'drm/drm-util.c',
|
'drm/drm-util.c',
|
||||||
'libinput/backend.c',
|
'libinput/backend.c',
|
||||||
'libinput/events.c',
|
'libinput/events.c',
|
||||||
'libinput/keyboard.c',
|
'libinput/keyboard.c',
|
||||||
'libinput/pointer.c',
|
'libinput/pointer.c',
|
||||||
'libinput/tablet_pad.c',
|
'libinput/tablet_pad.c',
|
||||||
'libinput/tablet_tool.c',
|
'libinput/tablet_tool.c',
|
||||||
'libinput/touch.c',
|
'libinput/touch.c',
|
||||||
'multi/backend.c',
|
'multi/backend.c',
|
||||||
'wayland/backend.c',
|
'wayland/backend.c',
|
||||||
'wayland/output.c',
|
'wayland/output.c',
|
||||||
'wayland/registry.c',
|
'wayland/registry.c',
|
||||||
'wayland/wl_seat.c',
|
'wayland/wl_seat.c',
|
||||||
'wayland/os-compatibility.c',
|
'wayland/os-compatibility.c',
|
||||||
)
|
)
|
||||||
|
|
||||||
if systemd.found()
|
if systemd.found()
|
||||||
backend_files += files('session/logind.c')
|
backend_files += files('session/logind.c')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
lib_wlr_backend = static_library('wlr_backend', backend_files,
|
lib_wlr_backend = static_library(
|
||||||
include_directories: wlr_inc,
|
'wlr_backend',
|
||||||
dependencies: [wayland_server, egl, gbm, libinput, systemd, wlr_protos])
|
backend_files,
|
||||||
|
include_directories: wlr_inc,
|
||||||
|
dependencies: [wayland_server, egl, gbm, libinput, systemd, wlr_protos],
|
||||||
|
)
|
||||||
|
@ -1,14 +1,31 @@
|
|||||||
lib_shared = static_library('shared',
|
lib_shared = static_library(
|
||||||
['shared.c', 'cat.c', 'ini.c', 'config.c'],
|
'shared',
|
||||||
dependencies: wlroots)
|
['shared.c', 'cat.c', 'ini.c', 'config.c'],
|
||||||
|
dependencies: wlroots,
|
||||||
|
)
|
||||||
|
|
||||||
executable('simple', 'simple.c', dependencies: wlroots, link_with: lib_shared)
|
executable('simple', 'simple.c', dependencies: wlroots, link_with: lib_shared)
|
||||||
executable('rotation', 'rotation.c', dependencies: wlroots, link_with: lib_shared)
|
|
||||||
executable('pointer', 'pointer.c', dependencies: wlroots, link_with: lib_shared)
|
executable('pointer', 'pointer.c', dependencies: wlroots, link_with: lib_shared)
|
||||||
executable('touch', 'touch.c', dependencies: wlroots, link_with: lib_shared)
|
executable('touch', 'touch.c', dependencies: wlroots, link_with: lib_shared)
|
||||||
executable('tablet', 'tablet.c', dependencies: wlroots, link_with: lib_shared)
|
executable('tablet', 'tablet.c', dependencies: wlroots, link_with: lib_shared)
|
||||||
executable('output-layout', 'output-layout.c', dependencies: wlroots, link_with: lib_shared)
|
|
||||||
|
|
||||||
executable('compositor', 'compositor.c',
|
executable(
|
||||||
dependencies: wlroots,
|
'rotation',
|
||||||
link_with: lib_shared)
|
'rotation.c',
|
||||||
|
dependencies: wlroots,
|
||||||
|
link_with: lib_shared,
|
||||||
|
)
|
||||||
|
|
||||||
|
executable(
|
||||||
|
'output-layout',
|
||||||
|
'output-layout.c',
|
||||||
|
dependencies: wlroots,
|
||||||
|
link_with: lib_shared,
|
||||||
|
)
|
||||||
|
|
||||||
|
executable(
|
||||||
|
'compositor',
|
||||||
|
'compositor.c',
|
||||||
|
dependencies: wlroots,
|
||||||
|
link_with: lib_shared,
|
||||||
|
)
|
||||||
|
@ -1,13 +1,16 @@
|
|||||||
lib_wlr_render = static_library('wlr_render', files(
|
lib_wlr_render = static_library(
|
||||||
'egl.c',
|
'wlr_render',
|
||||||
'matrix.c',
|
files(
|
||||||
'gles2/pixel_format.c',
|
'egl.c',
|
||||||
'gles2/renderer.c',
|
'matrix.c',
|
||||||
'gles2/shaders.c',
|
'gles2/pixel_format.c',
|
||||||
'gles2/texture.c',
|
'gles2/renderer.c',
|
||||||
'gles2/util.c',
|
'gles2/shaders.c',
|
||||||
'wlr_renderer.c',
|
'gles2/texture.c',
|
||||||
'wlr_texture.c',
|
'gles2/util.c',
|
||||||
),
|
'wlr_renderer.c',
|
||||||
include_directories: wlr_inc,
|
'wlr_texture.c',
|
||||||
dependencies: [glesv2, egl])
|
),
|
||||||
|
include_directories: wlr_inc,
|
||||||
|
dependencies: [glesv2, egl],
|
||||||
|
)
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
lib_wlr_types = static_library('wlr_types', files(
|
lib_wlr_types = static_library(
|
||||||
'wlr_data_device_manager.c',
|
'wlr_types',
|
||||||
'wlr_data_source.c',
|
files(
|
||||||
'wlr_input_device.c',
|
'wlr_data_device_manager.c',
|
||||||
'wlr_keyboard.c',
|
'wlr_data_source.c',
|
||||||
'wlr_output.c',
|
'wlr_input_device.c',
|
||||||
'wlr_output_layout.c',
|
'wlr_keyboard.c',
|
||||||
'wlr_pointer.c',
|
'wlr_output.c',
|
||||||
'wlr_cursor.c',
|
'wlr_output_layout.c',
|
||||||
'wlr_region.c',
|
'wlr_pointer.c',
|
||||||
'wlr_seat.c',
|
'wlr_cursor.c',
|
||||||
'wlr_surface.c',
|
'wlr_region.c',
|
||||||
'wlr_tablet_pad.c',
|
'wlr_seat.c',
|
||||||
'wlr_tablet_tool.c',
|
'wlr_surface.c',
|
||||||
'wlr_touch.c',
|
'wlr_tablet_pad.c',
|
||||||
'wlr_xdg_shell_v6.c',
|
'wlr_tablet_tool.c',
|
||||||
'wlr_wl_shell.c',
|
'wlr_touch.c',
|
||||||
'wlr_compositor.c',
|
'wlr_xdg_shell_v6.c',
|
||||||
'wlr_box.c',
|
'wlr_wl_shell.c',
|
||||||
),
|
'wlr_compositor.c',
|
||||||
include_directories: wlr_inc,
|
'wlr_box.c',
|
||||||
dependencies: [wayland_server, pixman, wlr_protos])
|
),
|
||||||
|
include_directories: wlr_inc,
|
||||||
|
dependencies: [wayland_server, pixman, wlr_protos],
|
||||||
|
)
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
lib_wlr_util = static_library('wlr_util', files(
|
lib_wlr_util = static_library(
|
||||||
'list.c',
|
'wlr_util',
|
||||||
'log.c',
|
files(
|
||||||
),
|
'list.c',
|
||||||
include_directories: wlr_inc)
|
'log.c',
|
||||||
|
),
|
||||||
|
include_directories: wlr_inc,
|
||||||
|
)
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
lib_wlr_xcursor = static_library('wlr_xcursor', files(
|
lib_wlr_xcursor = static_library(
|
||||||
'xcursor.c',
|
'wlr_xcursor',
|
||||||
'wlr_xcursor.c',
|
files(
|
||||||
),
|
'xcursor.c',
|
||||||
include_directories: wlr_inc)
|
'wlr_xcursor.c',
|
||||||
|
),
|
||||||
|
include_directories: wlr_inc,
|
||||||
|
)
|
||||||
|
@ -1,7 +1,10 @@
|
|||||||
lib_wlr_xwayland = static_library('wlr_xwayland', files(
|
lib_wlr_xwayland = static_library(
|
||||||
'sockets.c',
|
'wlr_xwayland',
|
||||||
'xwayland.c',
|
files(
|
||||||
'xwm.c',
|
'sockets.c',
|
||||||
),
|
'xwayland.c',
|
||||||
include_directories: wlr_inc,
|
'xwm.c',
|
||||||
dependencies: [wayland_server, xcb, xcb_composite, pixman])
|
),
|
||||||
|
include_directories: wlr_inc,
|
||||||
|
dependencies: [wayland_server, xcb, xcb_composite, pixman],
|
||||||
|
)
|
||||||
|
Loading…
Reference in new issue