Skip to content

Commit 2ec9e13

Browse files
Regenerate types with Fast DDS Gen 3.3.2 (#284)
Signed-off-by: Emilio Cuesta <emiliocuesta@eprosima.com>
1 parent f54bc8f commit 2ec9e13

42 files changed

Lines changed: 1139 additions & 1290 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

fastdds_python/test/types/CMakeLists.txt

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
cmake_minimum_required(VERSION 3.22)
2+
cmake_minimum_required(VERSION 3.20)
33

44
# SWIG: use standard target name.
55
if(POLICY CMP0078)
@@ -27,6 +27,13 @@ find_package(fastrtps REQUIRED)
2727

2828
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
2929

30+
if(NOT WIN32)
31+
# Default values for shared library suffix in MacOS
32+
if(${CMAKE_SYSTEM_NAME} STREQUAL "Darwin")
33+
set(CMAKE_SHARED_LIBRARY_SUFFIX ".so")
34+
endif()
35+
endif()
36+
3037
#Create library for C++ types
3138
add_library(${PROJECT_NAME} SHARED
3239
test_included_modules.cxx
@@ -135,6 +142,13 @@ find_package(fastrtps REQUIRED)
135142

136143
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
137144

145+
if(NOT WIN32)
146+
# Default values for shared library suffix in MacOS
147+
if(${CMAKE_SYSTEM_NAME} STREQUAL "Darwin")
148+
set(CMAKE_SHARED_LIBRARY_SUFFIX ".so")
149+
endif()
150+
endif()
151+
138152
#Create library for C++ types
139153
add_library(${PROJECT_NAME} SHARED
140154
test_modules.cxx
@@ -243,6 +257,13 @@ find_package(fastrtps REQUIRED)
243257

244258
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
245259

260+
if(NOT WIN32)
261+
# Default values for shared library suffix in MacOS
262+
if(${CMAKE_SYSTEM_NAME} STREQUAL "Darwin")
263+
set(CMAKE_SHARED_LIBRARY_SUFFIX ".so")
264+
endif()
265+
endif()
266+
246267
#Create library for C++ types
247268
add_library(${PROJECT_NAME} SHARED
248269
test_complete.cxx

fastdds_python/test/types/test_complete.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* @file test_complete.cpp
1717
* This source file contains the implementation of the described types in the IDL file.
1818
*
19-
* This file was generated by the tool fastddsgen.
19+
* This file was generated by the tool fastddsgen (version: 3.3.2).
2020
*/
2121

2222
#ifdef _WIN32

fastdds_python/test/types/test_complete.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* @file test_complete.h
1717
* This header file contains the declaration of the described types in the IDL file.
1818
*
19-
* This file was generated by the tool fastddsgen.
19+
* This file was generated by the tool fastddsgen (version: 3.3.2).
2020
*/
2121

2222
#include <fastcdr/config.h>

fastdds_python/test/types/test_complete.i

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* @file test_complete.i
1717
* This header file contains the SWIG interface of the described types in the IDL file.
1818
*
19-
* This file was generated by the tool fastddsgen.
19+
* This file was generated by the tool fastddsgen (version: 3.3.2).
2020
*/
2121

2222
%module test_complete

fastdds_python/test/types/test_completeCdrAux.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* @file test_completeCdrAux.hpp
1717
* This source file contains some definitions of CDR related functions.
1818
*
19-
* This file was generated by the tool fastddsgen.
19+
* This file was generated by the tool fastddsgen (version: 3.3.2).
2020
*/
2121

2222
#ifndef _FAST_DDS_GENERATED_TEST_COMPLETECDRAUX_HPP_

fastdds_python/test/types/test_completeCdrAux.ipp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* @file test_completeCdrAux.ipp
1717
* This source file contains some declarations of CDR related functions.
1818
*
19-
* This file was generated by the tool fastddsgen.
19+
* This file was generated by the tool fastddsgen (version: 3.3.2).
2020
*/
2121

2222
#ifndef _FAST_DDS_GENERATED_TEST_COMPLETECDRAUX_IPP_

0 commit comments

Comments
 (0)