mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 14:25:59 +01:00
13f6f0b923
* Migrate to hyprlang * pop up errors * fix swapped args * Meson & Nix: build with hyprlang * CI: add hyprlang to setup action * add infra for plugin stuff * fix hyprctl getoption * fix hyprctl getoption with json * format * fix post parse logic * fix autogen config * oops missed exec-once * fmt * fix ws rules * require 0.3.0 for hyprlang * nix: flaek * minor type fixes * fix cfg usages in swipe * use cvarlist for ws rules * fix throw in addPluginConfigVar * Nix: update hyprlang * minor fixes * fix disableLogs * mention hyprlang docs * bump hyprlang dep in cmake * Meson: bump min hyprlang version Nix: update hyprlang * minor fix * Nix: update meson patch --------- Co-authored-by: Mihai Fufezan <fufexan@protonmail.com>
31 lines
787 B
Meson
31 lines
787 B
Meson
globber = run_command('sh', '-c', 'find . -name "*.cpp" | sort', check: true)
|
|
src = globber.stdout().strip().split('\n')
|
|
|
|
executable('Hyprland', src,
|
|
cpp_args: ['-DWLR_USE_UNSTABLE'],
|
|
link_args: '-rdynamic',
|
|
cpp_pch: 'pch/pch.hpp',
|
|
dependencies: [
|
|
server_protos,
|
|
dependency('wayland-server'),
|
|
dependency('wayland-client'),
|
|
wlroots.get_variable('wlroots'),
|
|
dependency('cairo'),
|
|
dependency('hyprlang', version: '>= 0.3.2'),
|
|
dependency('libdrm'),
|
|
dependency('egl'),
|
|
dependency('xkbcommon'),
|
|
dependency('libinput'),
|
|
xcb_dep,
|
|
backtrace_dep,
|
|
systemd_dep,
|
|
udis86,
|
|
|
|
dependency('pixman-1'),
|
|
dependency('gl', 'opengl'),
|
|
dependency('threads'),
|
|
dependency('pango'),
|
|
dependency('pangocairo')
|
|
],
|
|
install : true
|
|
)
|