Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[19839] Fix flow controllers utests compilation when using Fast CDR from thirdparty #3979

Merged
merged 2 commits into from
Nov 2, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions test/unittest/rtps/flowcontrol/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ target_include_directories(FlowControllerFactoryTests PRIVATE
${PROJECT_SOURCE_DIR}/include ${PROJECT_BINARY_DIR}/include
${PROJECT_SOURCE_DIR}/src/cpp
)
target_link_libraries(FlowControllerFactoryTests GTest::gmock)
target_link_libraries(FlowControllerFactoryTests GTest::gmock fastcdr)
richiware marked this conversation as resolved.
Show resolved Hide resolved
if(MSVC OR MSVC_IDE)
target_link_libraries(FlowControllerFactoryTests ${PRIVACY}
iphlpapi Shlwapi
Expand Down Expand Up @@ -73,7 +73,7 @@ target_include_directories(FlowControllerPublishModesTests PRIVATE
${PROJECT_SOURCE_DIR}/include ${PROJECT_BINARY_DIR}/include
${PROJECT_SOURCE_DIR}/src/cpp
)
target_link_libraries(FlowControllerPublishModesTests GTest::gmock)
target_link_libraries(FlowControllerPublishModesTests GTest::gmock fastcdr)
richiware marked this conversation as resolved.
Show resolved Hide resolved
if(MSVC OR MSVC_IDE)
target_link_libraries(FlowControllerPublishModesTests ${PRIVACY}
iphlpapi Shlwapi
Expand All @@ -97,7 +97,7 @@ target_include_directories(FlowControllerSchedulersTests PRIVATE
${PROJECT_SOURCE_DIR}/include ${PROJECT_BINARY_DIR}/include
${PROJECT_SOURCE_DIR}/src/cpp
)
target_link_libraries(FlowControllerSchedulersTests GTest::gmock)
target_link_libraries(FlowControllerSchedulersTests GTest::gmock fastcdr)
richiware marked this conversation as resolved.
Show resolved Hide resolved
if(MSVC OR MSVC_IDE)
target_link_libraries(FlowControllerSchedulersTests ${PRIVACY}
iphlpapi Shlwapi
Expand Down
Loading