mirror of
https://github.com/scorpion-26/gBar.git
synced 2024-11-22 03:02:49 +00:00
883037029f
It has nothing to do with *windows* and obviously doesn't belong there. Plus I don't know whether I may need static access to the provider.
77 lines
1.6 KiB
Meson
77 lines
1.6 KiB
Meson
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',
|
|
'src/CSS.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('WithAMD')
|
|
add_global_arguments('-DWITH_AMD', language: 'cpp')
|
|
headers += 'src/AMDGPU.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',
|
|
'src/CSS.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'
|
|
)
|