2022-06-12 22:57:03 +02:00
|
|
|
project('Hyprland', 'cpp', 'c',
|
2022-06-29 13:50:19 +02:00
|
|
|
version : '0.6.2beta',
|
2022-07-06 17:02:12 +02:00
|
|
|
default_options : ['warning_level=2', 'default_library=static', 'optimization=3'])
|
|
|
|
|
|
|
|
add_global_arguments('-std=c++23', language: 'cpp')
|
2022-07-02 01:48:21 +02:00
|
|
|
|
|
|
|
add_project_arguments(
|
|
|
|
[
|
|
|
|
'-Wno-unused-parameter',
|
|
|
|
'-Wno-unused-value',
|
|
|
|
'-Wno-missing-field-initializers',
|
|
|
|
'-Wno-narrowing',
|
|
|
|
],
|
|
|
|
language: 'cpp')
|
2022-06-12 22:57:03 +02:00
|
|
|
|
2022-06-14 11:19:03 +02:00
|
|
|
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
|
|
|
|
|
2022-06-18 13:09:38 +02:00
|
|
|
if get_option('buildtype') == 'debug'
|
|
|
|
add_project_arguments('-DHYPRLAND_DEBUG', language: 'cpp')
|
|
|
|
endif
|
|
|
|
|
2022-06-12 22:57:03 +02:00
|
|
|
subdir('protocols')
|
|
|
|
subdir('src')
|
|
|
|
subdir('hyprctl')
|
2022-06-14 14:32:27 +02:00
|
|
|
subdir('assets')
|
2022-06-12 22:57:03 +02:00
|
|
|
subdir('example')
|