Fix #64
parent
e6a7817e45
commit
d4b4bfb8bc
@ -1,13 +1,13 @@
|
||||
lib_wlr_render = static_library('wlr_render', files(
|
||||
'egl.c',
|
||||
'matrix.c',
|
||||
'gles2/pixel_format.c',
|
||||
'gles2/renderer.c',
|
||||
'gles2/shaders.c',
|
||||
'gles2/texture.c',
|
||||
'gles2/util.c',
|
||||
'wlr_renderer.c',
|
||||
'wlr_texture.c',
|
||||
),
|
||||
include_directories: wlr_inc,
|
||||
dependencies: [glesv2, egl])
|
||||
'egl.c',
|
||||
'matrix.c',
|
||||
'gles2/pixel_format.c',
|
||||
'gles2/renderer.c',
|
||||
'gles2/shaders.c',
|
||||
'gles2/texture.c',
|
||||
'gles2/util.c',
|
||||
'wlr_renderer.c',
|
||||
'wlr_texture.c',
|
||||
),
|
||||
include_directories: wlr_inc,
|
||||
dependencies: [glesv2, egl])
|
||||
|
@ -1,14 +1,14 @@
|
||||
lib_wlr_types = static_library('wlr_types', [
|
||||
'wlr_input_device.c',
|
||||
'wlr_keyboard.c',
|
||||
'wlr_output.c',
|
||||
'wlr_pointer.c',
|
||||
'wlr_region.c',
|
||||
'wlr_surface.c',
|
||||
'wlr_tablet_pad.c',
|
||||
'wlr_tablet_tool.c',
|
||||
'wlr_touch.c',
|
||||
'wlr_xdg_shell_v6.c',
|
||||
],
|
||||
include_directories: wlr_inc,
|
||||
dependencies: [wayland_server, pixman, wlr_protos])
|
||||
lib_wlr_types = static_library('wlr_types', files(
|
||||
'wlr_input_device.c',
|
||||
'wlr_keyboard.c',
|
||||
'wlr_output.c',
|
||||
'wlr_pointer.c',
|
||||
'wlr_region.c',
|
||||
'wlr_surface.c',
|
||||
'wlr_tablet_pad.c',
|
||||
'wlr_tablet_tool.c',
|
||||
'wlr_touch.c',
|
||||
'wlr_xdg_shell_v6.c',
|
||||
),
|
||||
include_directories: wlr_inc,
|
||||
dependencies: [wayland_server, pixman, wlr_protos])
|
||||
|
@ -1,5 +1,5 @@
|
||||
lib_wlr_util = static_library('wlr_util', files(
|
||||
'list.c',
|
||||
'log.c',
|
||||
),
|
||||
include_directories: wlr_inc)
|
||||
'list.c',
|
||||
'log.c',
|
||||
),
|
||||
include_directories: wlr_inc)
|
||||
|
@ -1,5 +1,5 @@
|
||||
lib_wlr_xcursor = static_library('wlr_xcursor', files(
|
||||
'xcursor.c',
|
||||
'wlr_cursor.c',
|
||||
),
|
||||
include_directories: wlr_inc)
|
||||
'xcursor.c',
|
||||
'wlr_cursor.c',
|
||||
),
|
||||
include_directories: wlr_inc)
|
||||
|
Loading…
Reference in new issue