Initial commit

This commit is contained in:
2024-02-01 18:52:42 +01:00
commit cfbeaa8f9c
13 changed files with 346 additions and 0 deletions

12
tests/meson.build Normal file
View File

@@ -0,0 +1,12 @@
tests = [
]
foreach test : tests
test(test.get(0),
executable(test.get(1),
sources: test.get(2),
include_directories: incdir,
dependencies: [gtest_dep, usb_dep, log_dep, pangocairo_dep, cli11_dep]
)
)
endforeach