test/hyprland/backend: init

This commit is contained in:
Austin Horstman
2024-05-28 21:52:54 -05:00
parent 749f46f86f
commit 87eaa75b8a
3 changed files with 148 additions and 0 deletions

34
test/hyprland/meson.build Normal file
View File

@ -0,0 +1,34 @@
test_inc = include_directories('../../include')
test_dep = [
catch2,
fmt,
gtkmm,
jsoncpp,
spdlog,
]
test_src = files(
'../main.cpp',
'../JsonParser.cpp',
'../SafeSignal.cpp',
'../config.cpp',
'../css_reload_helper.cpp',
'../../src/config.cpp',
'../../src/util/css_reload_helper.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(),
)