waybar/test/meson.build
2022-01-07 19:21:51 -08:00

25 lines
383 B
Meson

test_inc = include_directories('../include')
test_dep = [
catch2,
fmt,
gtkmm,
jsoncpp,
spdlog,
]
waybar_test = executable(
'waybar_test',
'main.cpp',
'SafeSignal.cpp',
'config.cpp',
'../src/config.cpp',
dependencies: test_dep,
include_directories: test_inc,
)
test(
'waybar',
waybar_test,
workdir: meson.source_root(),
)