project('gBar', ['cpp'], version: '0.0.1', license: 'MIT', meson_version: '>=0.46.0', default_options: ['c_std=c++17', 'warning_level=3']) gtk = dependency('gtk+-3.0') gtk_layer_shell = dependency('gtk-layer-shell-0') headers = [ 'src/Common.h', 'src/System.h', 'src/PulseAudio.h', 'src/Widget.h', 'src/Window.h', 'src/Config.h' ] if get_option('WithHyprland') add_global_arguments('-DWITH_HYPRLAND', language: 'cpp') headers += 'src/Hyprland.h' endif if get_option('WithNvidia') add_global_arguments('-DWITH_NVIDIA', language: 'cpp') headers += 'src/NvidiaGPU.h' endif if get_option('WithBlueZ') add_global_arguments('-DWITH_BLUEZ', language: 'cpp') endif if get_option('WithSys') add_global_arguments('-DWITH_SYS', language: 'cpp') endif pulse = dependency('libpulse') libgBar = library('gBar', ['src/Window.cpp', 'src/Widget.cpp', 'src/System.cpp', 'src/Bar.cpp', 'src/AudioFlyin.cpp', 'src/BluetoothDevices.cpp', 'src/Plugin.cpp', 'src/Config.cpp' ], dependencies: [gtk, gtk_layer_shell, pulse], install: true) pkg = import('pkgconfig') pkg.generate(libgBar) executable( 'gBar', ['src/gBar.cpp'], dependencies: [gtk], link_with: libgBar, install_rpath: '$ORIGIN/:$ORIGIN/../lib', install: true ) install_headers( headers, subdir: 'gBar' ) install_data( ['css/style.css', 'css/style.scss'], install_dir: get_option('datadir') / 'gBar' )