score-back/tests/meson.build
Artur Mukhamadiev 886e3f1879 [jsonrpccxx] moved to external rpc impl
Detailed:
  As base used jsonrpccxx implementation paired with TCP socket
  TCP socket updated to handle dynamic sized buffers
  TCP communication protocol changed to serialized packet size after
  which json string is presented
2026-02-20 17:23:30 +03:00

13 lines
264 B
Meson

test_sources = files(
'test_rpc.cpp',
'test_integration.cpp',
'test_cli.cpp',
'test_tcp.cpp'
)
test_exe = executable('unit_tests',
test_sources,
dependencies : [cloud_point_rpc_dep, gtest_dep, gtest_main_dep, gmock_dep])
test('unit_tests', test_exe)