waybar/test/meson.build

25 lines
383 B
Meson
Raw Normal View History

2021-08-14 03:33:24 +02:00
test_inc = include_directories('../include')
test_dep = [
catch2,
fmt,
gtkmm,
2021-08-14 03:33:24 +02:00
jsoncpp,
spdlog,
]
2022-01-08 03:59:08 +01:00
waybar_test = executable(
'waybar_test',
'main.cpp',
'SafeSignal.cpp',
2021-08-14 03:33:24 +02:00
'config.cpp',
'../src/config.cpp',
dependencies: test_dep,
include_directories: test_inc,
)
test(
2022-01-08 03:59:08 +01:00
'waybar',
waybar_test,
workdir: meson.source_root(),
)