Waybar/meson.build

584 lines
18 KiB
Meson
Raw Permalink Normal View History

2018-08-10 14:37:03 +00:00
project(
'waybar', 'cpp', 'c',
2024-03-13 18:46:56 +00:00
version: '0.10.0',
2018-08-10 14:37:03 +00:00
license: 'MIT',
2024-02-17 08:58:39 +00:00
meson_version: '>= 0.59.0',
2018-08-30 09:30:20 +00:00
default_options : [
2023-07-16 13:05:42 +00:00
'cpp_std=c++20',
2018-11-08 08:57:24 +00:00
'buildtype=release',
'default_library=static'
2018-08-30 09:30:20 +00:00
],
2018-08-10 14:37:03 +00:00
)
2018-08-08 21:54:58 +00:00
compiler = meson.get_compiler('cpp')
2018-12-26 10:13:36 +00:00
cpp_args = []
2018-08-19 11:41:22 +00:00
cpp_link_args = []
2018-08-08 21:54:58 +00:00
if get_option('libcxx')
2018-08-08 21:54:58 +00:00
cpp_args += ['-stdlib=libc++']
cpp_link_args += ['-stdlib=libc++', '-lc++abi']
endif
2018-08-08 21:54:58 +00:00
if compiler.has_link_argument('-lc++fs')
cpp_link_args += ['-lc++fs']
elif compiler.has_link_argument('-lstdc++fs')
2018-08-08 21:54:58 +00:00
cpp_link_args += ['-lstdc++fs']
endif
2020-04-05 14:12:25 +00:00
git = find_program('git', native: true, required: false)
2018-12-26 10:13:36 +00:00
if not git.found()
add_project_arguments('-DVERSION="@0@"'.format(meson.project_version()), language: 'cpp')
else
git_path = run_command(git, 'rev-parse', '--show-toplevel', check: false).stdout().strip()
if meson.project_source_root() == git_path
git_commit_hash = run_command(git, 'describe', '--always', '--tags', check: false).stdout().strip()
git_branch = run_command(git, 'rev-parse', '--abbrev-ref', 'HEAD', check: false).stdout().strip()
version = '"@0@ (branch \'@1@\')"'.format(git_commit_hash, git_branch)
2020-05-24 17:14:27 +00:00
add_project_arguments('-DVERSION=@0@'.format(version), language: 'cpp')
else
add_project_arguments('-DVERSION="@0@"'.format(meson.project_version()), language: 'cpp')
endif
2018-12-26 10:13:36 +00:00
endif
2018-11-08 08:57:24 +00:00
code = '''
#include <langinfo.h>
#include <locale.h>
int main(int argc, char** argv) {
locale_t locale = newlocale(LC_ALL, "en_US.UTF-8", nullptr);
char* str;
str = nl_langinfo_l(_NL_TIME_WEEK_1STDAY, locale);
str = nl_langinfo_l(_NL_TIME_FIRST_WEEKDAY, locale);
freelocale(locale);
return 0;
}
'''
if compiler.links(code, name : 'nl_langinfo with _NL_TIME_WEEK_1STDAY, _NL_TIME_FIRST_WEEKDAY')
add_project_arguments('-DHAVE_LANGINFO_1STDAY', language: 'cpp')
endif
2018-08-08 21:54:58 +00:00
add_global_arguments(cpp_args, language : 'cpp')
add_global_link_arguments(cpp_link_args, language : 'cpp')
is_linux = host_machine.system() == 'linux'
2019-08-09 10:40:33 +00:00
is_dragonfly = host_machine.system() == 'dragonfly'
is_freebsd = host_machine.system() == 'freebsd'
is_netbsd = host_machine.system() == 'netbsd'
is_openbsd = host_machine.system() == 'openbsd'
2018-08-08 21:54:58 +00:00
thread_dep = dependency('threads')
2022-06-24 13:44:06 +00:00
fmt = dependency('fmt', version : ['>=8.1.1'], fallback : ['fmt', 'fmt_dep'])
spdlog = dependency('spdlog', version : ['>=1.10.0'], fallback : ['spdlog', 'spdlog_dep'], default_options : ['external_fmt=enabled'])
2018-08-08 21:54:58 +00:00
wayland_client = dependency('wayland-client')
wayland_cursor = dependency('wayland-cursor')
wayland_protos = dependency('wayland-protocols')
gtkmm = dependency('gtkmm-3.0', version : ['>=3.22.0'])
2018-10-25 09:47:03 +00:00
dbusmenu_gtk = dependency('dbusmenu-gtk3-0.4', required: get_option('dbusmenu-gtk'))
giounix = dependency('gio-unix-2.0')
2022-11-03 13:08:22 +00:00
jsoncpp = dependency('jsoncpp', version : ['>=1.9.2'], fallback : ['jsoncpp', 'jsoncpp_dep'])
2018-08-08 21:54:58 +00:00
sigcpp = dependency('sigc++-2.0')
libinotify = dependency('libinotify', required: false)
libepoll = dependency('epoll-shim', required: false)
libinput = dependency('libinput', required: get_option('libinput'))
2018-10-21 09:58:35 +00:00
libnl = dependency('libnl-3.0', required: get_option('libnl'))
libnlgen = dependency('libnl-genl-3.0', required: get_option('libnl'))
2022-03-15 16:54:06 +00:00
upower_glib = dependency('upower-glib', required: get_option('upower_glib'))
2023-10-26 21:08:57 +00:00
pipewire = dependency('libpipewire-0.3', required: get_option('pipewire'))
playerctl = dependency('playerctl', version : ['>=2.0.0'], required: get_option('mpris'))
2018-10-21 09:58:35 +00:00
libpulse = dependency('libpulse', required: get_option('pulseaudio'))
libudev = dependency('libudev', required: get_option('libudev'))
2021-02-07 20:05:11 +00:00
libevdev = dependency('libevdev', required: get_option('libevdev'))
2019-04-16 14:34:37 +00:00
libmpdclient = dependency('libmpdclient', required: get_option('mpd'))
2021-07-13 01:33:12 +00:00
xkbregistry = dependency('xkbregistry')
libjack = dependency('jack', required: get_option('jack'))
libwireplumber = dependency('wireplumber-0.5', required: get_option('wireplumber'))
libsndio = compiler.find_library('sndio', required: get_option('sndio'))
if libsndio.found()
if not compiler.has_function('sioctl_open', prefix: '#include <sndio.h>', dependencies: libsndio)
if get_option('sndio').enabled()
error('libsndio is too old, required >=1.7.0')
else
warning('libsndio is too old, required >=1.7.0')
libsndio = dependency('', required: false)
endif
endif
endif
gtk_layer_shell = dependency('gtk-layer-shell-0', version: ['>=0.6.0'],
default_options: ['introspection=false', 'vapi=false'],
fallback: ['gtk-layer-shell', 'gtk_layer_shell'])
systemd = dependency('systemd', required: get_option('systemd'))
cpp_lib_chrono = compiler.compute_int('__cpp_lib_chrono', prefix : '#include <chrono>')
have_chrono_timezones = cpp_lib_chrono >= 201611
if have_chrono_timezones
code = '''
#include <chrono>
using namespace std::chrono;
int main(int argc, char** argv) {
const time_zone* tz;
return 0;
}
'''
if not compiler.links(code)
have_chrono_timezones = false
endif
endif
if have_chrono_timezones
tz_dep = declare_dependency()
else
tz_dep = dependency('date',
required: false,
default_options : [ 'use_system_tzdb=true' ],
modules : [ 'date::date', 'date::date-tz' ],
fallback: [ 'date', 'tz_dep' ])
endif
2019-09-10 12:12:52 +00:00
prefix = get_option('prefix')
sysconfdir = get_option('sysconfdir')
conf_data = configuration_data()
2019-09-10 12:12:52 +00:00
conf_data.set('prefix', prefix)
2024-02-17 08:53:45 +00:00
add_project_arguments('-DSYSCONFDIR="@0@"'.format(prefix / sysconfdir), language : 'cpp')
if systemd.found()
user_units_dir = systemd.get_variable(pkgconfig: 'systemduserunitdir')
configure_file(
configuration: conf_data,
input: './resources/waybar.service.in',
output: '@BASENAME@',
install_dir: user_units_dir
)
endif
2018-08-08 21:54:58 +00:00
2018-08-20 15:20:02 +00:00
src_files = files(
'src/factory.cpp',
2019-06-15 12:57:52 +00:00
'src/AModule.cpp',
2018-08-20 15:20:02 +00:00
'src/ALabel.cpp',
'src/AIconLabel.cpp',
'src/AAppIconLabel.cpp',
2018-08-20 15:20:02 +00:00
'src/modules/custom.cpp',
2019-09-23 20:25:54 +00:00
'src/modules/disk.cpp',
2019-08-22 16:04:09 +00:00
'src/modules/idle_inhibitor.cpp',
'src/modules/image.cpp',
'src/modules/load.cpp',
2019-03-13 12:18:08 +00:00
'src/modules/temperature.cpp',
2022-09-30 11:33:23 +00:00
'src/modules/user.cpp',
2023-10-15 14:32:05 +00:00
'src/ASlider.cpp',
2018-08-20 15:20:02 +00:00
'src/main.cpp',
'src/bar.cpp',
2020-01-21 16:48:45 +00:00
'src/client.cpp',
'src/config.cpp',
2021-10-31 22:55:13 +00:00
'src/group.cpp',
search for dark or light mode stylesheet summary: ------- This commit adds xdg-desktop-portal support to waybar. If a portal supporting `org.freedesktop.portal.Settings` exists, then it will be queried for the current colorscheme. This colorscheme will then be used to prefer a `style-light.css` or `style-dark.css` over the basic `style.css`. technical details: ----------------- Appearance is provided by several libraries, such as libhandy (mobile) and libadwaita. However, waybar links to neither of these libraries. As the amount of code required to communicate with xdg-desktop portal as a client is rather minimal, I believe doing so is better than linking to an additional library. The Gio library for communicating with dbus is rather messy, Instead of the `Portal` class containing a `Gio::Dbus::Proxy`, it extends it which simplifies signal handling. `Portal` then exposes its own signal, which can be listened to by waybar to update CSS. For a reference implementation, please see another one of my projects: https://github.com/4e554c4c/darkman.nvim/blob/main/portal.go test plan: --------- If no desktop portal which provides `Settings` exists, then waybar continues with the log line ``` [2023-09-06 14:14:37.754] [info] Unable to receive desktop appearance: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Settings” on object at path /org/freedesktop/portal/desktop ``` Furthermore, if `style-light.css` or `style-dark.css` do not exist, then `style.css` will still be searched for. Waybar has been tested with both light and dark startup. E.g. if the appearance is dark on startup the log lines ``` [2023-09-06 14:27:45.379] [info] Discovered appearance 'dark' [2023-09-06 14:27:45.379] [debug] Try expanding: $XDG_CONFIG_HOME/waybar/style-dark.css [2023-09-06 14:27:45.379] [debug] Found config file: $XDG_CONFIG_HOME/waybar/style-dark.css [2023-09-06 14:27:45.379] [info] Using CSS file /home/pounce/.config/waybar/style-dark.css ``` will be observed. If the color then changes to light during the operation of waybar, it will change css files: ``` [2023-09-06 14:28:17.173] [info] Received new appearance 'dark' [2023-09-06 14:28:17.173] [debug] Try expanding: $XDG_CONFIG_HOME/waybar/style-light.css [2023-09-06 14:28:17.173] [debug] Found config file: $XDG_CONFIG_HOME/waybar/style-light.css [2023-09-06 14:28:17.173] [info] Using CSS file /home/pounce/.config/waybar/style-light.css ``` Finally, tested resetting waybar and toggling style (works, and style is only changed once). fixes: Alexays/Waybar#1973
2023-09-06 15:19:56 +00:00
'src/util/portal.cpp',
'src/util/enum.cpp',
'src/util/prepare_for_sleep.cpp',
'src/util/ustring_clen.cpp',
2022-10-19 11:25:08 +00:00
'src/util/sanitize_str.cpp',
'src/util/rewrite_string.cpp',
'src/util/gtk_icon.cpp',
2024-01-22 02:23:46 +00:00
'src/util/regex_collection.cpp',
'src/util/css_reload_helper.cpp'
2018-08-20 15:20:02 +00:00
)
2018-08-08 21:54:58 +00:00
man_files = files(
'man/waybar-custom.5.scd',
'man/waybar-disk.5.scd',
'man/waybar-idle-inhibitor.5.scd',
'man/waybar-image.5.scd',
'man/waybar-states.5.scd',
'man/waybar-temperature.5.scd',
)
inc_dirs = ['include']
if is_linux
2019-08-11 13:10:37 +00:00
add_project_arguments('-DHAVE_CPU_LINUX', language: 'cpp')
2019-08-09 10:40:33 +00:00
add_project_arguments('-DHAVE_MEMORY_LINUX', language: 'cpp')
2024-01-09 10:05:17 +00:00
add_project_arguments('-DHAVE_SYSTEMD_MONITOR', language: 'cpp')
src_files += files(
'src/modules/battery.cpp',
'src/modules/bluetooth.cpp',
'src/modules/cffi.cpp',
2023-07-29 14:27:46 +00:00
'src/modules/cpu.cpp',
2022-12-21 16:45:53 +00:00
'src/modules/cpu_frequency/common.cpp',
'src/modules/cpu_frequency/linux.cpp',
2022-12-21 16:47:06 +00:00
'src/modules/cpu_usage/common.cpp',
'src/modules/cpu_usage/linux.cpp',
2019-08-09 10:40:33 +00:00
'src/modules/memory/common.cpp',
'src/modules/memory/linux.cpp',
'src/modules/power_profiles_daemon.cpp',
2024-01-09 10:05:17 +00:00
'src/modules/systemd_failed_units.cpp',
2019-08-09 10:40:33 +00:00
)
man_files += files(
'man/waybar-battery.5.scd',
'man/waybar-bluetooth.5.scd',
'man/waybar-cffi.5.scd',
'man/waybar-cpu.5.scd',
'man/waybar-memory.5.scd',
'man/waybar-systemd-failed-units.5.scd',
'man/waybar-power-profiles-daemon.5.scd',
)
2019-08-09 10:40:33 +00:00
elif is_dragonfly or is_freebsd or is_netbsd or is_openbsd
2019-08-11 13:10:37 +00:00
add_project_arguments('-DHAVE_CPU_BSD', language: 'cpp')
2019-08-09 10:40:33 +00:00
add_project_arguments('-DHAVE_MEMORY_BSD', language: 'cpp')
src_files += files(
'src/modules/cffi.cpp',
2023-07-29 14:27:46 +00:00
'src/modules/cpu.cpp',
'src/modules/cpu_frequency/bsd.cpp',
'src/modules/cpu_frequency/common.cpp',
2022-12-21 16:47:06 +00:00
'src/modules/cpu_usage/bsd.cpp',
'src/modules/cpu_usage/common.cpp',
2019-08-09 10:40:33 +00:00
'src/modules/memory/bsd.cpp',
'src/modules/memory/common.cpp',
)
man_files += files(
'man/waybar-cffi.5.scd',
'man/waybar-cpu.5.scd',
'man/waybar-memory.5.scd',
)
if is_freebsd
src_files += files('src/modules/battery.cpp')
man_files += files('man/waybar-battery.5.scd')
endif
endif
if true
add_project_arguments('-DHAVE_SWAY', language: 'cpp')
src_files += files(
'src/modules/sway/ipc/client.cpp',
'src/modules/sway/bar.cpp',
'src/modules/sway/mode.cpp',
'src/modules/sway/language.cpp',
'src/modules/sway/window.cpp',
'src/modules/sway/workspaces.cpp',
'src/modules/sway/scratchpad.cpp'
)
man_files += files(
'man/waybar-sway-language.5.scd',
'man/waybar-sway-mode.5.scd',
'man/waybar-sway-scratchpad.5.scd',
'man/waybar-sway-window.5.scd',
'man/waybar-sway-workspaces.5.scd',
)
endif
2018-08-20 15:20:02 +00:00
if true
add_project_arguments('-DHAVE_WLR_TASKBAR', language: 'cpp')
src_files += files('src/modules/wlr/taskbar.cpp')
man_files += files('man/waybar-wlr-taskbar.5.scd')
endif
2020-06-06 13:41:37 +00:00
if true
add_project_arguments('-DHAVE_RIVER', language: 'cpp')
src_files += files(
'src/modules/river/layout.cpp',
'src/modules/river/mode.cpp',
'src/modules/river/tags.cpp',
'src/modules/river/window.cpp',
)
man_files += files(
'man/waybar-river-layout.5.scd',
'man/waybar-river-mode.5.scd',
'man/waybar-river-tags.5.scd',
'man/waybar-river-window.5.scd',
)
2020-06-06 13:41:37 +00:00
endif
2023-04-11 01:50:21 +00:00
if true
add_project_arguments('-DHAVE_DWL', language: 'cpp')
src_files += files('src/modules/dwl/tags.cpp')
2024-03-14 20:07:45 +00:00
src_files += files('src/modules/dwl/window.cpp')
man_files += files('man/waybar-dwl-tags.5.scd')
2024-03-14 20:07:45 +00:00
man_files += files('man/waybar-dwl-window.5.scd')
2020-06-06 13:41:37 +00:00
endif
2022-07-01 10:46:28 +00:00
if true
add_project_arguments('-DHAVE_HYPRLAND', language: 'cpp')
src_files += files(
'src/modules/hyprland/backend.cpp',
'src/modules/hyprland/language.cpp',
'src/modules/hyprland/submap.cpp',
'src/modules/hyprland/window.cpp',
'src/modules/hyprland/workspaces.cpp',
)
man_files += files(
'man/waybar-hyprland-language.5.scd',
'man/waybar-hyprland-submap.5.scd',
'man/waybar-hyprland-window.5.scd',
'man/waybar-hyprland-workspaces.5.scd',
)
2022-07-01 10:46:28 +00:00
endif
2018-08-20 15:20:02 +00:00
if libnl.found() and libnlgen.found()
add_project_arguments('-DHAVE_LIBNL', language: 'cpp')
src_files += files('src/modules/network.cpp')
man_files += files('man/waybar-network.5.scd')
2018-08-20 15:20:02 +00:00
endif
if not get_option('logind').disabled()
add_project_arguments('-DHAVE_GAMEMODE', '-DHAVE_LOGIND_INHIBITOR', language: 'cpp')
src_files += files(
'src/modules/gamemode.cpp',
'src/modules/inhibitor.cpp',
)
man_files += files(
'man/waybar-gamemode.5.scd',
'man/waybar-inhibitor.5.scd',
)
2022-05-13 19:30:45 +00:00
endif
if (upower_glib.found() and not get_option('logind').disabled())
2022-03-15 16:54:06 +00:00
add_project_arguments('-DHAVE_UPOWER', language: 'cpp')
src_files += files(
'src/modules/upower/upower.cpp',
'src/modules/upower/upower_tooltip.cpp',
)
man_files += files('man/waybar-upower.5.scd')
2022-03-15 16:54:06 +00:00
endif
2023-10-26 21:08:57 +00:00
if pipewire.found()
2023-10-26 21:08:57 +00:00
add_project_arguments('-DHAVE_PIPEWIRE', language: 'cpp')
src_files += files(
'src/modules/privacy/privacy.cpp',
'src/modules/privacy/privacy_item.cpp',
'src/util/pipewire_backend.cpp',
)
man_files += files('man/waybar-privacy.5.scd')
2023-10-26 21:08:57 +00:00
endif
if playerctl.found()
add_project_arguments('-DHAVE_MPRIS', language: 'cpp')
src_files += files('src/modules/mpris/mpris.cpp')
man_files += files('man/waybar-mpris.5.scd')
endif
2018-08-20 15:20:02 +00:00
if libpulse.found()
add_project_arguments('-DHAVE_LIBPULSE', language: 'cpp')
src_files += files(
'src/modules/pulseaudio.cpp',
'src/modules/pulseaudio_slider.cpp',
'src/util/audio_backend.cpp',
)
man_files += files(
'man/waybar-pulseaudio.5.scd',
'man/waybar-pulseaudio-slider.5.scd',
)
2018-08-20 15:20:02 +00:00
endif
if libjack.found()
add_project_arguments('-DHAVE_LIBJACK', language: 'cpp')
src_files += files('src/modules/jack.cpp')
man_files += files('man/waybar-jack.5.scd')
endif
if libwireplumber.found()
add_project_arguments('-DHAVE_LIBWIREPLUMBER', language: 'cpp')
src_files += files('src/modules/wireplumber.cpp')
man_files += files('man/waybar-wireplumber.5.scd')
endif
2018-10-25 09:47:03 +00:00
if dbusmenu_gtk.found()
add_project_arguments('-DHAVE_DBUSMENU', language: 'cpp')
src_files += files(
'src/modules/sni/tray.cpp',
2018-11-22 14:47:23 +00:00
'src/modules/sni/watcher.cpp',
'src/modules/sni/host.cpp',
'src/modules/sni/item.cpp'
2018-10-25 09:47:03 +00:00
)
man_files += files(
'man/waybar-tray.5.scd',
)
2018-10-25 09:47:03 +00:00
endif
if libudev.found() and (is_linux or libepoll.found())
add_project_arguments('-DHAVE_LIBUDEV', language: 'cpp')
src_files += files(
'src/modules/backlight.cpp',
'src/modules/backlight_slider.cpp',
'src/util/backlight_backend.cpp',
)
man_files += files(
'man/waybar-backlight.5.scd',
'man/waybar-backlight-slider.5.scd',
)
endif
if libevdev.found() and (is_linux or libepoll.found()) and libinput.found() and (is_linux or libinotify.found())
2021-02-07 20:05:11 +00:00
add_project_arguments('-DHAVE_LIBEVDEV', language: 'cpp')
add_project_arguments('-DHAVE_LIBINPUT', language: 'cpp')
src_files += files('src/modules/keyboard_state.cpp')
man_files += files('man/waybar-keyboard-state.5.scd')
2021-02-07 20:05:11 +00:00
endif
2019-04-16 14:34:37 +00:00
if libmpdclient.found()
add_project_arguments('-DHAVE_LIBMPDCLIENT', language: 'cpp')
src_files += files(
'src/modules/mpd/mpd.cpp',
'src/modules/mpd/state.cpp',
)
man_files += files(
'man/waybar-mpd.5.scd',
)
2019-04-16 14:34:37 +00:00
endif
if libsndio.found()
add_project_arguments('-DHAVE_LIBSNDIO', language: 'cpp')
src_files += files('src/modules/sndio.cpp')
man_files += files('man/waybar-sndio.5.scd')
endif
2022-05-02 16:11:21 +00:00
if get_option('rfkill').enabled() and is_linux
add_project_arguments('-DWANT_RFKILL', language: 'cpp')
src_files += files(
'src/util/rfkill.cpp'
)
2020-08-14 18:56:45 +00:00
endif
if have_chrono_timezones
add_project_arguments('-DHAVE_CHRONO_TIMEZONES', language: 'cpp')
src_files += files('src/modules/clock.cpp')
man_files += files('man/waybar-clock.5.scd')
elif tz_dep.found()
add_project_arguments('-DHAVE_LIBDATE', language: 'cpp')
src_files += files('src/modules/clock.cpp')
man_files += files('man/waybar-clock.5.scd')
else
src_files += files('src/modules/simpleclock.cpp')
man_files += files('man/waybar-clock.5.scd')
endif
2021-11-27 22:12:35 +00:00
if get_option('experimental')
add_project_arguments('-DHAVE_WLR_WORKSPACES', language: 'cpp')
src_files += files(
'src/modules/wlr/workspace_manager.cpp',
'src/modules/wlr/workspace_manager_binding.cpp',
)
man_files += files(
'man/waybar-wlr-workspaces.5.scd',
)
2021-11-27 22:12:35 +00:00
endif
cava = dependency('cava',
version : '>=0.10.1',
required: get_option('cava'),
fallback : ['cava', 'cava_dep'],
not_found_message: 'cava is not found. Building waybar without cava')
if cava.found()
add_project_arguments('-DHAVE_LIBCAVA', language: 'cpp')
src_files += files('src/modules/cava.cpp')
man_files += files('man/waybar-cava.5.scd')
endif
2018-08-20 15:20:02 +00:00
subdir('protocol')
2018-08-16 12:29:41 +00:00
2023-10-26 21:08:57 +00:00
app_resources = []
subdir('resources/icons')
2018-08-08 21:54:58 +00:00
executable(
'waybar',
2023-10-26 21:08:57 +00:00
[src_files, app_resources],
2018-08-08 21:54:58 +00:00
dependencies: [
thread_dep,
client_protos,
wayland_client,
fmt,
2019-05-18 23:44:45 +00:00
spdlog,
2018-08-08 21:54:58 +00:00
sigcpp,
jsoncpp,
wayland_cursor,
gtkmm,
2018-10-04 16:03:01 +00:00
dbusmenu_gtk,
2018-10-27 06:19:58 +00:00
giounix,
libinput,
2018-08-09 14:38:24 +00:00
libnl,
libnlgen,
2022-03-15 16:54:06 +00:00
upower_glib,
2023-10-26 21:08:57 +00:00
pipewire,
playerctl,
libpulse,
libjack,
libwireplumber,
2019-04-16 14:34:37 +00:00
libudev,
libinotify,
libepoll,
libmpdclient,
2021-02-07 20:05:11 +00:00
libevdev,
gtk_layer_shell,
libsndio,
2021-07-13 01:33:12 +00:00
tz_dep,
xkbregistry,
cava
2018-08-08 21:54:58 +00:00
],
include_directories: inc_dirs,
2018-08-08 21:54:58 +00:00
install: true,
)
2018-08-09 15:02:30 +00:00
install_data(
'resources/config.jsonc',
'resources/style.css',
2024-02-17 08:53:45 +00:00
install_dir: sysconfdir / 'xdg/waybar'
2018-08-09 15:02:30 +00:00
)
2018-08-16 12:29:41 +00:00
scdoc = dependency('scdoc', version: '>=1.9.2', native: true, required: get_option('man-pages'))
2019-08-22 16:04:09 +00:00
if scdoc.found()
man_files += configure_file(
input: 'man/waybar.5.scd.in',
output: 'waybar.5.scd',
configuration: {
2024-02-17 08:53:45 +00:00
'sysconfdir': prefix / sysconfdir
}
)
fs = import('fs')
2019-08-22 16:04:09 +00:00
mandir = get_option('mandir')
foreach file : man_files
basename = fs.name(file)
topic = basename.split('.')[-3]
section = basename.split('.')[-2]
2019-08-22 16:04:09 +00:00
output = '@0@.@1@'.format(topic, section)
custom_target(
output,
input: file,
2019-08-22 16:04:09 +00:00
output: output,
2024-02-17 08:58:39 +00:00
command: scdoc.get_variable('scdoc'),
feed: true,
capture: true,
2019-08-22 16:04:09 +00:00
install: true,
install_dir: '@0@/man@1@'.format(mandir, section)
)
endforeach
endif
2023-06-30 23:23:37 +00:00
catch2 = dependency(
'catch2',
default_options: [ 'tests=false' ],
2023-06-30 23:23:37 +00:00
fallback: ['catch2', 'catch2_dep'],
required: get_option('tests'),
)
if catch2.found()
subdir('test')
endif
2021-08-14 01:33:24 +00:00
2018-08-16 12:29:41 +00:00
clangtidy = find_program('clang-tidy', required: false)
if clangtidy.found()
run_target(
'tidy',
command: [
clangtidy,
'-checks=*,-fuchsia-default-arguments',
'-p', meson.project_build_root()
2018-08-16 12:29:41 +00:00
] + src_files)
endif