2024-09-11 19:00:47 +03:00
|
|
|
project(
|
|
|
|
'Hyprland',
|
|
|
|
'cpp',
|
|
|
|
'c',
|
|
|
|
version: run_command('cat', join_paths(meson.project_source_root(), 'VERSION'), check: true).stdout().strip(),
|
|
|
|
default_options: [
|
2022-08-12 18:20:26 +03:00
|
|
|
'warning_level=2',
|
|
|
|
'default_library=static',
|
|
|
|
'optimization=3',
|
2023-02-04 02:13:15 +03:00
|
|
|
'buildtype=release',
|
2024-05-15 19:13:56 +03:00
|
|
|
'debug=false',
|
2024-08-08 12:54:41 +03:00
|
|
|
'cpp_std=c++26',
|
2024-09-11 19:00:47 +03:00
|
|
|
],
|
|
|
|
)
|
2022-07-02 02:48:21 +03:00
|
|
|
|
2024-08-04 15:19:37 +03:00
|
|
|
datarootdir = '-DDATAROOTDIR="' + get_option('prefix') / get_option('datadir') + '"'
|
2022-07-02 02:48:21 +03:00
|
|
|
add_project_arguments(
|
|
|
|
[
|
|
|
|
'-Wno-unused-parameter',
|
|
|
|
'-Wno-unused-value',
|
|
|
|
'-Wno-missing-field-initializers',
|
|
|
|
'-Wno-narrowing',
|
2024-09-11 19:00:47 +03:00
|
|
|
'-Wno-pointer-arith', datarootdir,
|
2022-07-02 02:48:21 +03:00
|
|
|
],
|
2024-09-11 19:00:47 +03:00
|
|
|
language: 'cpp',
|
|
|
|
)
|
2022-06-12 23:57:03 +03:00
|
|
|
|
2024-05-15 19:13:56 +03:00
|
|
|
cpp_compiler = meson.get_compiler('cpp')
|
2023-10-12 00:27:53 +03:00
|
|
|
if cpp_compiler.check_header('execinfo.h')
|
|
|
|
add_project_arguments('-DHAS_EXECINFO', language: 'cpp')
|
|
|
|
endif
|
|
|
|
|
2024-09-19 16:48:31 +03:00
|
|
|
aquamarine = dependency('aquamarine')
|
|
|
|
add_project_arguments(['-DAQUAMARINE_VERSION="@0@"'.format(aquamarine.version())], language: 'cpp')
|
|
|
|
|
2022-06-14 12:19:03 +03:00
|
|
|
xcb_dep = dependency('xcb', required: get_option('xwayland'))
|
2024-05-26 21:11:09 +03:00
|
|
|
xcb_composite_dep = dependency('xcb-composite', required: get_option('xwayland'))
|
|
|
|
xcb_errors_dep = dependency('xcb-errors', required: get_option('xwayland'))
|
|
|
|
xcb_icccm_dep = dependency('xcb-icccm', required: get_option('xwayland'))
|
|
|
|
xcb_render_dep = dependency('xcb-render', required: get_option('xwayland'))
|
|
|
|
xcb_res_dep = dependency('xcb-res', required: get_option('xwayland'))
|
|
|
|
xcb_xfixes_dep = dependency('xcb-xfixes', required: get_option('xwayland'))
|
2022-06-14 12:19:03 +03:00
|
|
|
|
2024-09-11 19:00:47 +03:00
|
|
|
gio_dep = dependency('gio-2.0', required: true)
|
2024-08-09 20:33:20 +03:00
|
|
|
|
2024-07-21 14:09:54 +03:00
|
|
|
if not xcb_dep.found()
|
2023-03-15 21:45:44 +03:00
|
|
|
add_project_arguments('-DNO_XWAYLAND', language: 'cpp')
|
2022-06-14 12:19:03 +03:00
|
|
|
endif
|
|
|
|
|
2023-02-20 17:15:15 +03:00
|
|
|
backtrace_dep = cpp_compiler.find_library('execinfo', required: false)
|
2024-04-15 16:42:17 +03:00
|
|
|
epoll_dep = dependency('epoll-shim', required: false) # timerfd on BSDs
|
2023-01-05 22:17:55 +03:00
|
|
|
|
2024-09-11 19:00:47 +03:00
|
|
|
# Handle options
|
2023-03-27 07:10:42 +03:00
|
|
|
if get_option('systemd').enabled()
|
2024-04-20 20:50:07 +03:00
|
|
|
add_project_arguments('-DUSES_SYSTEMD', language: 'cpp')
|
2023-01-05 22:17:55 +03:00
|
|
|
endif
|
|
|
|
|
2023-03-27 07:10:42 +03:00
|
|
|
if get_option('legacy_renderer').enabled()
|
|
|
|
add_project_arguments('-DLEGACY_RENDERER', language: 'cpp')
|
|
|
|
endif
|
|
|
|
|
2022-06-18 14:09:38 +03:00
|
|
|
if get_option('buildtype') == 'debug'
|
|
|
|
add_project_arguments('-DHYPRLAND_DEBUG', language: 'cpp')
|
|
|
|
endif
|
|
|
|
|
2024-09-11 19:00:47 +03:00
|
|
|
# Generate hyprland version and populate version.h
|
|
|
|
run_command('sh', '-c', 'scripts/generateVersion.sh', check: true)
|
2023-10-19 02:09:06 +03:00
|
|
|
|
2024-09-11 19:00:47 +03:00
|
|
|
# Install headers
|
2023-04-27 00:59:16 +03:00
|
|
|
globber = run_command('find', 'src', '-name', '*.h*', check: true)
|
|
|
|
headers = globber.stdout().strip().split('\n')
|
|
|
|
foreach file : headers
|
|
|
|
install_headers(file, subdir: 'hyprland', preserve_path: true)
|
|
|
|
endforeach
|
|
|
|
|
2024-09-22 20:53:34 +03:00
|
|
|
tracy = dependency('tracy', static: true, required: get_option('tracy_enable'))
|
|
|
|
|
|
|
|
if get_option('tracy_enable') and get_option('buildtype') != 'debugoptimized'
|
|
|
|
warning('Profiling builds should set -- buildtype = debugoptimized')
|
|
|
|
endif
|
|
|
|
|
2022-06-12 23:57:03 +03:00
|
|
|
subdir('protocols')
|
|
|
|
subdir('src')
|
|
|
|
subdir('hyprctl')
|
2023-12-07 13:41:09 +03:00
|
|
|
subdir('hyprpm/src')
|
2022-06-14 15:32:27 +03:00
|
|
|
subdir('assets')
|
2022-06-12 23:57:03 +03:00
|
|
|
subdir('example')
|
2022-08-21 18:58:03 +03:00
|
|
|
subdir('docs')
|
2023-04-27 00:59:16 +03:00
|
|
|
|
2024-09-11 19:00:47 +03:00
|
|
|
# Generate hyprland.pc
|
2023-04-27 00:59:16 +03:00
|
|
|
pkg_install_dir = join_paths(get_option('datadir'), 'pkgconfig')
|
|
|
|
|
|
|
|
import('pkgconfig').generate(
|
|
|
|
name: 'Hyprland',
|
|
|
|
filebase: 'hyprland',
|
|
|
|
url: 'https://github.com/hyprwm/Hyprland',
|
|
|
|
description: 'Hyprland header files',
|
|
|
|
install_dir: pkg_install_dir,
|
2024-07-21 14:09:54 +03:00
|
|
|
subdirs: ['', 'hyprland/protocols', 'hyprland'],
|
2023-04-27 00:59:16 +03:00
|
|
|
)
|