mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-31 22:25:21 -04:00
Revert "Merge pull request #1194 from ascent12/meson_feature"
This breaks wlroots when used as a meson subproject. This reverts commitdea311992e, reversing changes made to6db9c4b746.
This commit is contained in:
parent
dea311992e
commit
9c886f20b9
19 changed files with 227 additions and 385 deletions
|
|
@ -4,23 +4,11 @@ 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(input: 'config.h.in', output: 'config.h',configuration: conf_data),
|
||||
configure_file(input: 'version.h.in', 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')
|
||||
wlr_inc_dest = join_paths(get_option('includedir'), 'wlr')
|
||||
configure_file(output: 'config.h', install_dir: wlr_inc_dest, configuration: conf_data)
|
||||
configure_file(output: 'version.h', install_dir: wlr_inc_dest, configuration: version_data)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue