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

[20989] Don't require Fast CDR v2 in examples #4833

Merged
merged 1 commit into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(AdvancedConfigurationExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT fastrtps_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/BasicConfigurationExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(BasicConfigurationExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT fastrtps_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/Configurability/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(Configurability VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project("ContentFilterTopic" VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT fastrtps_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/CustomListenerExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(DDSCustomListener VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT fastrtps_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/CustomPayloadPoolExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(CustomPayloadPoolExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT fastrtps_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/DeadlineQoSExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(DeadlineQoSExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/DisablePositiveACKs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(LifespanQoSExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT fastrtps_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/DiscoveryServerExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(DiscoveryServerExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT fastrtps_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/DynamicHelloWorldExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(DDSDynamicHelloWorldExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT fastrtps_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/Filtering/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(FilteringExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/FlowControlExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(FlowControlExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/HelloWorldExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(DDSHelloWorldExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT fastrtps_FOUND)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(DDSHelloWorldExampleDataSharing VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT fastrtps_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/HelloWorldExampleSharedMem/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(HelloWorldExampleSharedMem VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/HelloWorldExampleTCP/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project("HelloWorldExampleTCP" VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/HistoryKind/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(HistoryKindSample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/Keys/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(KeysSample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/LateJoiners/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(LateJoiners VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/LifespanQoSExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(LifespanQoSExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT fastrtps_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/LivelinessQoS/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(LivelinessQoS VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT fastrtps_FOUND)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(OwnershipStrengthQoSExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/RequestReplyExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(RequestReplyExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT fastrtps_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/SampleConfig_Controller/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(SampleControllerConfig VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/SampleConfig_Events/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(SampleEventsConfig VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/SampleConfig_Multimedia/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(SampleMultimediaConfig VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/SecureHelloWorldExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(SecureHelloWorldExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/StaticHelloWorldExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(StaticHelloWorldExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/TypeLookupService/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(TypeLookupExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT fastrtps_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/WriterLoansExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(DDSWriterLoansExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT fastrtps_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/ZeroCopyExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(DDSZeroCopyExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT fastrtps_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/rtps/AsSocket/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(RTPSTest_as_socket VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/rtps/Persistent/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(RTPSTest_persistent VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/rtps/Registered/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(RTPSTest_registered VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr 2 REQUIRED)
find_package(fastcdr REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
Expand Down
Loading