aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--assets/install/meson.build6
-rw-r--r--assets/meson.build7
-rw-r--r--docs/meson.build4
-rw-r--r--example/meson.build12
-rw-r--r--hyprctl/meson.build26
-rw-r--r--hyprpm/src/meson.build28
-rw-r--r--meson.build26
-rw-r--r--src/meson.build6
8 files changed, 87 insertions, 28 deletions
diff --git a/assets/install/meson.build b/assets/install/meson.build
index 1d4fb917..45076469 100644
--- a/assets/install/meson.build
+++ b/assets/install/meson.build
@@ -2,5 +2,9 @@ globber = run_command('sh', '-c', 'find . -type f -not -name "*.build"', check:
files = globber.stdout().strip().split('\n')
foreach file : files
- install_data(file, install_dir: join_paths(get_option('datadir'), 'hypr'), install_tag: 'runtime')
+ install_data(
+ file,
+ install_dir: join_paths(get_option('datadir'), 'hypr'),
+ install_tag: 'runtime',
+ )
endforeach
diff --git a/assets/meson.build b/assets/meson.build
index 0648037a..2a28121d 100644
--- a/assets/meson.build
+++ b/assets/meson.build
@@ -1,2 +1,7 @@
-install_data('hyprland-portals.conf', install_dir: join_paths(get_option('datadir'), 'xdg-desktop-portal'), install_tag: 'runtime')
+install_data(
+ 'hyprland-portals.conf',
+ install_dir: join_paths(get_option('datadir'), 'xdg-desktop-portal'),
+ install_tag: 'runtime',
+)
+
subdir('install')
diff --git a/docs/meson.build b/docs/meson.build
index a5d7e737..6ff51d1a 100644
--- a/docs/meson.build
+++ b/docs/meson.build
@@ -1,2 +1,2 @@
-install_man ('Hyprland.1')
-install_man ('hyprctl.1')
+install_man('Hyprland.1')
+install_man('hyprctl.1')
diff --git a/example/meson.build b/example/meson.build
index 2fb3a35e..a338644e 100644
--- a/example/meson.build
+++ b/example/meson.build
@@ -1,2 +1,10 @@
-install_data('hyprland.conf', install_dir: join_paths(get_option('datadir'), 'hypr'), install_tag: 'runtime')
-install_data('hyprland.desktop', install_dir: join_paths(get_option('datadir'), 'wayland-sessions'), install_tag: 'runtime')
+install_data(
+ 'hyprland.conf',
+ install_dir: join_paths(get_option('datadir'), 'hypr'),
+ install_tag: 'runtime',
+)
+install_data(
+ 'hyprland.desktop',
+ install_dir: join_paths(get_option('datadir'), 'wayland-sessions'),
+ install_tag: 'runtime',
+)
diff --git a/hyprctl/meson.build b/hyprctl/meson.build
index 5488845f..455f5739 100644
--- a/hyprctl/meson.build
+++ b/hyprctl/meson.build
@@ -1,10 +1,26 @@
-executable('hyprctl', 'main.cpp',
+executable(
+ 'hyprctl',
+ 'main.cpp',
dependencies: [
dependency('hyprutils', version: '>= 0.1.1'),
],
- install: true
+ install: true,
)
-install_data('hyprctl.bash', install_dir: join_paths(get_option('datadir'), 'bash-completion/completions'), install_tag: 'runtime', rename: 'hyprctl')
-install_data('hyprctl.fish', install_dir: join_paths(get_option('datadir'), 'fish/vendor_completions.d'), install_tag: 'runtime')
-install_data('hyprctl.zsh', install_dir: join_paths(get_option('datadir'), 'zsh/site-functions'), install_tag: 'runtime', rename: '_hyprctl')
+install_data(
+ 'hyprctl.bash',
+ install_dir: join_paths(get_option('datadir'), 'bash-completion/completions'),
+ install_tag: 'runtime',
+ rename: 'hyprctl',
+)
+install_data(
+ 'hyprctl.fish',
+ install_dir: join_paths(get_option('datadir'), 'fish/vendor_completions.d'),
+ install_tag: 'runtime',
+)
+install_data(
+ 'hyprctl.zsh',
+ install_dir: join_paths(get_option('datadir'), 'zsh/site-functions'),
+ install_tag: 'runtime',
+ rename: '_hyprctl',
+)
diff --git a/hyprpm/src/meson.build b/hyprpm/src/meson.build
index e2c512a5..2ef6c323 100644
--- a/hyprpm/src/meson.build
+++ b/hyprpm/src/meson.build
@@ -1,15 +1,31 @@
globber = run_command('sh', '-c', 'find . -name "*.cpp" | sort', check: true)
src = globber.stdout().strip().split('\n')
-executable('hyprpm', src,
+executable(
+ 'hyprpm',
+ src,
dependencies: [
dependency('hyprutils', version: '>= 0.1.1'),
dependency('threads'),
- dependency('tomlplusplus')
+ dependency('tomlplusplus'),
],
- install : true
+ install: true,
)
-install_data('../hyprpm.bash', install_dir: join_paths(get_option('datadir'), 'bash-completion/completions'), install_tag: 'runtime', rename: 'hyprpm')
-install_data('../hyprpm.fish', install_dir: join_paths(get_option('datadir'), 'fish/vendor_completions.d'), install_tag: 'runtime')
-install_data('../hyprpm.zsh', install_dir: join_paths(get_option('datadir'), 'zsh/site-functions'), install_tag: 'runtime', rename: '_hyprpm')
+install_data(
+ '../hyprpm.bash',
+ install_dir: join_paths(get_option('datadir'), 'bash-completion/completions'),
+ install_tag: 'runtime',
+ rename: 'hyprpm',
+)
+install_data(
+ '../hyprpm.fish',
+ install_dir: join_paths(get_option('datadir'), 'fish/vendor_completions.d'),
+ install_tag: 'runtime',
+)
+install_data(
+ '../hyprpm.zsh',
+ install_dir: join_paths(get_option('datadir'), 'zsh/site-functions'),
+ install_tag: 'runtime',
+ rename: '_hyprpm',
+)
diff --git a/meson.build b/meson.build
index 6a9b7ac5..123c31ae 100644
--- a/meson.build
+++ b/meson.build
@@ -1,13 +1,17 @@
-project('Hyprland', 'cpp', 'c',
- version : run_command('cat', join_paths(meson.source_root(), 'VERSION'), check: true).stdout().strip(),
- default_options : [
+project(
+ 'Hyprland',
+ 'cpp',
+ 'c',
+ version: run_command('cat', join_paths(meson.project_source_root(), 'VERSION'), check: true).stdout().strip(),
+ default_options: [
'warning_level=2',
'default_library=static',
'optimization=3',
'buildtype=release',
'debug=false',
'cpp_std=c++26',
- ])
+ ],
+)
datarootdir = '-DDATAROOTDIR="' + get_option('prefix') / get_option('datadir') + '"'
add_project_arguments(
@@ -16,10 +20,10 @@ add_project_arguments(
'-Wno-unused-value',
'-Wno-missing-field-initializers',
'-Wno-narrowing',
- '-Wno-pointer-arith',
- datarootdir,
+ '-Wno-pointer-arith', datarootdir,
],
- language: 'cpp')
+ language: 'cpp',
+)
cpp_compiler = meson.get_compiler('cpp')
if cpp_compiler.check_header('execinfo.h')
@@ -34,7 +38,7 @@ 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'))
-gio_dep = dependency('gio-2.0', required:true)
+gio_dep = dependency('gio-2.0', required: true)
cmake = import('cmake')
udis = cmake.subproject('udis86')
@@ -47,6 +51,7 @@ endif
backtrace_dep = cpp_compiler.find_library('execinfo', required: false)
epoll_dep = dependency('epoll-shim', required: false) # timerfd on BSDs
+# Handle options
if get_option('systemd').enabled()
add_project_arguments('-DUSES_SYSTEMD', language: 'cpp')
endif
@@ -59,8 +64,10 @@ if get_option('buildtype') == 'debug'
add_project_arguments('-DHYPRLAND_DEBUG', language: 'cpp')
endif
-version_h = run_command('sh', '-c', 'scripts/generateVersion.sh', check: true)
+# Generate hyprland version and populate version.h
+run_command('sh', '-c', 'scripts/generateVersion.sh', check: true)
+# Install headers
globber = run_command('find', 'src', '-name', '*.h*', check: true)
headers = globber.stdout().strip().split('\n')
foreach file : headers
@@ -75,6 +82,7 @@ subdir('assets')
subdir('example')
subdir('docs')
+# Generate hyprland.pc
pkg_install_dir = join_paths(get_option('datadir'), 'pkgconfig')
import('pkgconfig').generate(
diff --git a/src/meson.build b/src/meson.build
index 475ecc24..3821bd60 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -1,7 +1,9 @@
globber = run_command('sh', '-c', 'find . -name "*.cpp" | sort', check: true)
src = globber.stdout().strip().split('\n')
-executable('Hyprland', src,
+executable(
+ 'Hyprland',
+ src,
link_args: '-rdynamic',
cpp_pch: 'pch/pch.hpp',
dependencies: [
@@ -38,5 +40,5 @@ executable('Hyprland', src,
dependency('pangocairo'),
dependency('uuid'),
],
- install : true
+ install: true,
)