2019-12-06 13:05:32 -05:00
|
|
|
wayland_test_client_installed_tests_libexecdir = join_paths(
|
|
|
|
mutter_installed_tests_libexecdir,
|
|
|
|
'wayland-test-clients',
|
|
|
|
)
|
|
|
|
|
|
|
|
test_driver_server_header = custom_target(
|
|
|
|
'test-driver server header',
|
|
|
|
input: 'test-driver.xml',
|
|
|
|
output: 'test-driver-server-protocol.h',
|
|
|
|
command: [
|
|
|
|
wayland_scanner,
|
|
|
|
'server-header',
|
|
|
|
'@INPUT@', '@OUTPUT@',
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
test_driver_client_header = custom_target(
|
|
|
|
'test-driver client header',
|
|
|
|
input: 'test-driver.xml',
|
|
|
|
output: 'test-driver-client-protocol.h',
|
|
|
|
command: [
|
|
|
|
wayland_scanner,
|
|
|
|
'client-header',
|
|
|
|
'@INPUT@', '@OUTPUT@',
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
test_driver_protocol_code = custom_target(
|
|
|
|
'test-driver source',
|
|
|
|
input: 'test-driver.xml',
|
|
|
|
output: 'test-driver-protocol.c',
|
|
|
|
command: [
|
|
|
|
wayland_scanner,
|
|
|
|
'private-code',
|
|
|
|
'@INPUT@', '@OUTPUT@',
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
common_sources = [
|
|
|
|
'wayland-test-client-utils.c',
|
|
|
|
'wayland-test-client-utils.h',
|
|
|
|
wayland_protocol_client_headers,
|
|
|
|
wayland_protocol_sources,
|
|
|
|
test_driver_client_header,
|
|
|
|
test_driver_protocol_code,
|
|
|
|
]
|
|
|
|
|
|
|
|
executable('subsurface-remap-toplevel',
|
|
|
|
sources: [
|
|
|
|
'subsurface-remap-toplevel.c',
|
|
|
|
common_sources,
|
|
|
|
],
|
|
|
|
include_directories: tests_includepath,
|
|
|
|
c_args: tests_c_args,
|
|
|
|
dependencies: [
|
|
|
|
glib_dep,
|
|
|
|
wayland_client_dep,
|
|
|
|
],
|
|
|
|
install: have_installed_tests,
|
|
|
|
install_dir: wayland_test_client_installed_tests_libexecdir,
|
|
|
|
)
|
2020-02-12 15:54:19 -05:00
|
|
|
|
|
|
|
executable('meta-anonymous-file',
|
|
|
|
sources: [
|
|
|
|
'meta-anonymous-file.c',
|
|
|
|
common_sources,
|
|
|
|
],
|
|
|
|
include_directories: tests_includepath,
|
|
|
|
c_args: tests_c_args,
|
|
|
|
dependencies: [
|
|
|
|
glib_dep,
|
|
|
|
wayland_client_dep,
|
|
|
|
libmutter_dep,
|
|
|
|
],
|
|
|
|
install: have_installed_tests,
|
|
|
|
install_dir: wayland_test_client_installed_tests_libexecdir,
|
|
|
|
)
|