project('lcthw-utilities', 'cpp', default_options: ['cpp_std=c++20']) catch2 = dependency('catch2-with-main') fmt = dependency('fmt') runtests = executable('runtests', [ 'dbc.cpp', 'tests/fsm.cpp', 'tests/dbc.cpp', ], dependencies: [catch2, fmt]) test('tests', runtests)