Waybar/test/meson.build

32 lines
441 B
Meson
Raw Normal View History

2021-08-14 01:33:24 +00:00
test_inc = include_directories('../include')
2024-05-29 02:52:54 +00:00
2021-08-14 01:33:24 +00:00
test_dep = [
catch2,
fmt,
gtkmm,
2021-08-14 01:33:24 +00:00
jsoncpp,
spdlog,
]
2024-05-29 02:52:54 +00:00
test_src = files(
2022-01-08 02:59:08 +00:00
'main.cpp',
2021-08-14 01:33:24 +00:00
'config.cpp',
'../src/config.cpp',
)
waybar_test = executable(
'waybar_test',
test_src,
2021-08-14 01:33:24 +00:00
dependencies: test_dep,
include_directories: test_inc,
)
test(
2022-01-08 02:59:08 +00:00
'waybar',
waybar_test,
workdir: meson.project_source_root(),
)
2024-05-29 02:52:54 +00:00
2024-06-09 03:30:01 +00:00
subdir('utils')
2024-05-29 02:52:54 +00:00
subdir('hyprland')