mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 09:25:59 +01:00
35 lines
998 B
Meson
35 lines
998 B
Meson
project('Hyprland', 'cpp', 'c',
|
|
version : '0.6.2beta',
|
|
default_options : ['warning_level=2', 'cpp_std=c++23', 'default_library=static', 'optimization=3'])
|
|
|
|
add_project_arguments(
|
|
[
|
|
'-Wno-unused-parameter',
|
|
'-Wno-unused-value',
|
|
'-Wno-missing-field-initializers',
|
|
'-Wno-narrowing',
|
|
],
|
|
language: 'cpp')
|
|
|
|
wlroots = subproject('wlroots', default_options: ['examples=false'])
|
|
have_xwlr = wlroots.get_variable('features').get('xwayland')
|
|
xcb_dep = dependency('xcb', required: get_option('xwayland'))
|
|
|
|
if get_option('xwayland').enabled() and not have_xwlr
|
|
error('Cannot enable Xwayland in Hyprland: wlroots has been built without Xwayland support')
|
|
endif
|
|
have_xwayland = xcb_dep.found() and have_xwlr
|
|
|
|
if not have_xwayland
|
|
add_project_arguments('-DNO_XWAYLAND', language: 'cpp')
|
|
endif
|
|
|
|
if get_option('buildtype') == 'debug'
|
|
add_project_arguments('-DHYPRLAND_DEBUG', language: 'cpp')
|
|
endif
|
|
|
|
subdir('protocols')
|
|
subdir('src')
|
|
subdir('hyprctl')
|
|
subdir('assets')
|
|
subdir('example')
|