commit
e91c91d455
@ -1,14 +1,31 @@
|
||||
lib_shared = static_library('shared',
|
||||
lib_shared = static_library(
|
||||
'shared',
|
||||
['shared.c', 'cat.c', 'ini.c', 'config.c'],
|
||||
dependencies: wlroots)
|
||||
dependencies: wlroots,
|
||||
)
|
||||
|
||||
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('touch', 'touch.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(
|
||||
'rotation',
|
||||
'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)
|
||||
link_with: lib_shared,
|
||||
)
|
||||
|
@ -1,5 +1,8 @@
|
||||
lib_wlr_util = static_library('wlr_util', files(
|
||||
lib_wlr_util = static_library(
|
||||
'wlr_util',
|
||||
files(
|
||||
'list.c',
|
||||
'log.c',
|
||||
),
|
||||
include_directories: wlr_inc)
|
||||
include_directories: wlr_inc,
|
||||
)
|
||||
|
@ -1,5 +1,8 @@
|
||||
lib_wlr_xcursor = static_library('wlr_xcursor', files(
|
||||
lib_wlr_xcursor = static_library(
|
||||
'wlr_xcursor',
|
||||
files(
|
||||
'xcursor.c',
|
||||
'wlr_xcursor.c',
|
||||
),
|
||||
include_directories: wlr_inc)
|
||||
include_directories: wlr_inc,
|
||||
)
|
||||
|
@ -1,7 +1,10 @@
|
||||
lib_wlr_xwayland = static_library('wlr_xwayland', files(
|
||||
lib_wlr_xwayland = static_library(
|
||||
'wlr_xwayland',
|
||||
files(
|
||||
'sockets.c',
|
||||
'xwayland.c',
|
||||
'xwm.c',
|
||||
),
|
||||
include_directories: wlr_inc,
|
||||
dependencies: [wayland_server, xcb, xcb_composite, pixman])
|
||||
dependencies: [wayland_server, xcb, xcb_composite, pixman],
|
||||
)
|
||||
|
Loading…
Reference in new issue