Files

32 lines
441 B
Meson
Raw Permalink Normal View History

2021-08-13 18:33:24 -07:00
test_inc = include_directories('../include')
2024-05-28 21:52:54 -05:00
2021-08-13 18:33:24 -07:00
test_dep = [
catch2,
fmt,
2020-12-28 17:28:03 -08:00
gtkmm,
2021-08-13 18:33:24 -07:00
jsoncpp,
spdlog,
]
2024-05-28 21:52:54 -05:00
2022-01-07 19:32:18 -08:00
test_src = files(
2022-01-07 18:59:08 -08:00
'main.cpp',
2021-08-13 18:33:24 -07:00
'config.cpp',
'../src/config.cpp',
2022-01-07 19:32:18 -08:00
)
waybar_test = executable(
'waybar_test',
test_src,
2021-08-13 18:33:24 -07:00
dependencies: test_dep,
include_directories: test_inc,
)
test(
2022-01-07 18:59:08 -08:00
'waybar',
waybar_test,
2024-02-16 23:59:38 -08:00
workdir: meson.project_source_root(),
2020-12-28 17:28:03 -08:00
)
2024-05-28 21:52:54 -05:00
2024-06-08 22:30:01 -05:00
subdir('utils')
2024-05-28 21:52:54 -05:00
subdir('hyprland')