From e156f13ab9ceb65406d8511ed87bcd630314c894 Mon Sep 17 00:00:00 2001 From: Miles Kent Date: Thu, 14 Nov 2024 06:11:43 -0500 Subject: [PATCH] WIP - MCAP Replay Still need to: integrate w/ DB exec, vCAN --- CMakeLists.txt | 7 ++++--- test/test_mcap_replay/src/client.cpp | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1c19207..ed10ff2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -258,15 +258,16 @@ add_library(socket ${REPLAY_DIR}/src/socket.cpp) add_library(helper ${REPLAY_DIR}/src/helper.cpp) add_executable(test_mcap_replay_client ${REPLAY_DIR}/src/client.cpp) -add_executable(test_mcap_replay_server ${REPLAY_DIR}/src/server.cpp) +#add_executable(test_mcap_replay_server ${REPLAY_DIR}/src/server.cpp) target_include_directories(socket PUBLIC ${REPLAY_DIR}/include) target_include_directories(helper PUBLIC ${REPLAY_DIR}/include) set_props(test_mcap_replay_client) -set_props(test_mcap_replay_server) +#set_props(test_mcap_replay_server) -install(TARGETS test_mcap_replay_client test_mcap_replay_server +install(TARGETS test_mcap_replay_client + #test_mcap_replay_server RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} ) diff --git a/test/test_mcap_replay/src/client.cpp b/test/test_mcap_replay/src/client.cpp index 57c9303..a82c6fb 100644 --- a/test/test_mcap_replay/src/client.cpp +++ b/test/test_mcap_replay/src/client.cpp @@ -143,10 +143,10 @@ int main(int argc, char** argv) { // DEBUG // Exit out early - if (c > 3) break; + // if (c > 3) break; } reader.close(); socket.close(); return 0; -} \ No newline at end of file +}