mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 05:54:08 +00:00
18 lines
310 B
Meson
18 lines
310 B
Meson
srcs_miext_sync = [
|
|
'misync.c',
|
|
'misyncfd.c',
|
|
]
|
|
|
|
if xshmfence_dep.found()
|
|
srcs_miext_sync += 'misyncshm.c'
|
|
endif
|
|
|
|
libxserver_miext_sync = static_library('xserver_miext_sync',
|
|
srcs_miext_sync,
|
|
include_directories: inc,
|
|
dependencies: [
|
|
common_dep,
|
|
xshmfence_dep,
|
|
],
|
|
)
|