2019-03-28 17:35:56 +03:00
|
|
|
install_headers(
|
2019-04-04 14:27:31 +03:00
|
|
|
'config-parser.h',
|
2019-03-28 17:28:47 +03:00
|
|
|
'libweston.h',
|
2022-06-30 12:59:45 +03:00
|
|
|
'desktop.h',
|
2019-04-04 13:47:40 +03:00
|
|
|
'matrix.h',
|
2019-03-29 18:07:34 +03:00
|
|
|
'plugin-registry.h',
|
2019-03-29 18:14:29 +03:00
|
|
|
'windowed-output-api.h',
|
2019-06-21 22:49:18 +03:00
|
|
|
'weston-log.h',
|
2019-04-04 14:46:00 +03:00
|
|
|
'zalloc.h',
|
2020-08-28 16:59:36 +03:00
|
|
|
'remoting-plugin.h',
|
|
|
|
'pipewire-plugin.h',
|
2019-03-28 17:35:56 +03:00
|
|
|
subdir: dir_include_libweston_install
|
|
|
|
)
|
2019-03-29 17:39:12 +03:00
|
|
|
|
|
|
|
backend_drm_h = files('backend-drm.h')
|
|
|
|
backend_headless_h = files('backend-headless.h')
|
|
|
|
backend_rdp_h = files('backend-rdp.h')
|
2019-09-22 20:40:04 +03:00
|
|
|
backend_vnc_h = files('backend-vnc.h')
|
2019-03-29 17:39:12 +03:00
|
|
|
backend_wayland_h = files('backend-wayland.h')
|
|
|
|
backend_x11_h = files('backend-x11.h')
|
2019-04-04 15:52:47 +03:00
|
|
|
|
|
|
|
xwayland_api_h = files('xwayland-api.h')
|
2019-04-04 15:41:02 +03:00
|
|
|
|
|
|
|
libweston_version_h = configuration_data()
|
|
|
|
libweston_version_h.set('WESTON_VERSION_MAJOR', version_weston_arr[0])
|
|
|
|
libweston_version_h.set('WESTON_VERSION_MINOR', version_weston_arr[1])
|
|
|
|
libweston_version_h.set('WESTON_VERSION_MICRO', version_weston_arr[2])
|
|
|
|
libweston_version_h.set('WESTON_VERSION', version_weston)
|
|
|
|
version_h = configure_file(
|
|
|
|
input: 'version.h.in',
|
|
|
|
output: 'version.h',
|
|
|
|
configuration: libweston_version_h
|
|
|
|
)
|
|
|
|
install_headers(version_h, subdir: dir_include_libweston_install)
|