Files
ptouch-prnt/tests/meson.build
Moritz Martinius a08f6167b3
All checks were successful
Build ptprnt / build (push) Successful in 1m50s
Fix build, logging and added some coverage report (I should do more commits)
2023-11-16 21:00:37 +01:00

14 lines
581 B
Meson

tests = [['bitmap_test', 'bitmap_test_exe', ptprnt_srcs + ['bitmap_test/bitmap_test.cpp']],
['image_test', 'image_test_exe', ptprnt_srcs +['image_test/image_test.cpp']],
['monochrome_test', 'monochrome_test_exe', ptprnt_srcs +['monochrome_test/monochrome_test.cpp']]
]
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