aboutsummaryrefslogtreecommitdiff
path: root/include/wlr/meson.build
blob: 14551cb4de8a2618392687aeed7597bcf4f51621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
version_array = meson.project_version().split('.')
version_data = configuration_data()
version_data.set_quoted('WLR_VERSION_STR',   meson.project_version())
version_data.set('WLR_VERSION_MAJOR',        version_array[0])
version_data.set('WLR_VERSION_MINOR',        version_array[1])
version_data.set('WLR_VERSION_MICRO',        version_array[2])
version_data.set('WLR_VERSION_NUM',          '(WLR_VERSION_MAJOR << 16) | (WLR_VERSION_MINOR << 8) | WLR_VERSION_MICRO')
version_data.set('WLR_VERSION_API_CURRENT',  so_version[0])
version_data.set('WLR_VERSION_API_REVISION', so_version[1])
version_data.set('WLR_VERSION_API_AGE',      so_version[2])

install_headers(
	configure_file(output: 'config.h',  configuration: conf_data),
	configure_file(output: 'version.h', configuration: version_data),
	'backend.h',
	'xcursor.h',
	subdir: 'wlr'
)
if conf_data.get('WLR_HAS_XWAYLAND', false)
	install_headers('xwayland.h', subdir: 'wlr')
endif

subdir('backend')
subdir('interfaces')
subdir('render')
subdir('types')
subdir('util')