Waybar/test/hyprland/meson.build

29 lines
440 B
Meson
Raw Normal View History

2024-05-29 02:52:54 +00:00
test_inc = include_directories('../../include')
test_dep = [
catch2,
fmt,
gtkmm,
jsoncpp,
spdlog,
]
test_src = files(
'../main.cpp',
'backend.cpp',
'../../src/modules/hyprland/backend.cpp'
)
hyprland_test = executable(
'hyprland_test',
test_src,
dependencies: test_dep,
include_directories: test_inc,
)
test(
'hyprland',
hyprland_test,
workdir: meson.project_source_root(),
)