Skip to content
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
6 changes: 3 additions & 3 deletions fastdds_python/test/types/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ target_link_libraries(${${PROJECT_NAME}_MODULE}
)

# Find the installation path
execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "from distutils import sysconfig; print(sysconfig.get_python_lib(plat_specific=True, prefix='${CMAKE_INSTALL_PREFIX}'))"
execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "from sysconfig import get_path; print(get_path('purelib', vars={'base': '${CMAKE_INSTALL_PREFIX}'}))"
OUTPUT_VARIABLE _ABS_PYTHON_MODULE_PATH
OUTPUT_STRIP_TRAILING_WHITESPACE
)
Expand Down Expand Up @@ -228,7 +228,7 @@ target_link_libraries(${${PROJECT_NAME}_MODULE}
)

# Find the installation path
execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "from distutils import sysconfig; print(sysconfig.get_python_lib(plat_specific=True, prefix='${CMAKE_INSTALL_PREFIX}'))"
execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "from sysconfig import get_path; print(get_path('purelib', vars={'base': '${CMAKE_INSTALL_PREFIX}'}))"
OUTPUT_VARIABLE _ABS_PYTHON_MODULE_PATH
OUTPUT_STRIP_TRAILING_WHITESPACE
)
Expand Down Expand Up @@ -341,7 +341,7 @@ target_link_libraries(${${PROJECT_NAME}_MODULE}
)

# Find the installation path
execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "from distutils import sysconfig; print(sysconfig.get_python_lib(plat_specific=True, prefix='${CMAKE_INSTALL_PREFIX}'))"
execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "from sysconfig import get_path; print(get_path('purelib', vars={'base': '${CMAKE_INSTALL_PREFIX}'}))"
OUTPUT_VARIABLE _ABS_PYTHON_MODULE_PATH
OUTPUT_STRIP_TRAILING_WHITESPACE
)
Expand Down
2 changes: 1 addition & 1 deletion fastdds_python/test/types/test_complete.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* @file test_complete.hpp
* This header file contains the declaration of the described types in the IDL file.
*
* This file was generated by the tool fastddsgen (version: 4.2.0).
* This file was generated by the tool fastddsgen (version: 4.3.0).
*/

#ifndef FAST_DDS_GENERATED__TEST_COMPLETE_HPP
Expand Down
3 changes: 2 additions & 1 deletion fastdds_python/test/types/test_complete.i
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* @file test_complete.i
* This header file contains the SWIG interface of the described types in the IDL file.
*
* This file was generated by the tool fastddsgen (version: 4.2.0).
* This file was generated by the tool fastddsgen (version: 4.3.0).
*/

%module(moduleimport="if __import__('os').name == 'nt': import win32api; win32api.LoadLibrary('test_complete.dll')\nif __package__ or '.' in __name__:\n from . import _test_completeWrapper\nelse:\n import _test_completeWrapper") test_complete
Expand Down Expand Up @@ -2802,6 +2802,7 @@ namespace swig {

// Include the class interfaces
%include "test_complete.hpp"

// Include the corresponding TopicDataType
%include "test_completePubSubTypes.i"

3 changes: 2 additions & 1 deletion fastdds_python/test/types/test_completeCdrAux.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@
* @file test_completeCdrAux.hpp
* This source file contains some definitions of CDR related functions.
*
* This file was generated by the tool fastddsgen (version: 4.2.0).
* This file was generated by the tool fastddsgen (version: 4.3.0).
*/

#ifndef FAST_DDS_GENERATED__TEST_COMPLETECDRAUX_HPP
#define FAST_DDS_GENERATED__TEST_COMPLETECDRAUX_HPP

#include "test_complete.hpp"

constexpr uint32_t CompleteTestType_max_cdr_typesize {8164UL};
constexpr uint32_t CompleteTestType_max_key_cdr_typesize {0UL};

Expand Down
2 changes: 1 addition & 1 deletion fastdds_python/test/types/test_completeCdrAux.ipp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* @file test_completeCdrAux.ipp
* This source file contains some declarations of CDR related functions.
*
* This file was generated by the tool fastddsgen (version: 4.2.0).
* This file was generated by the tool fastddsgen (version: 4.3.0).
*/

#ifndef FAST_DDS_GENERATED__TEST_COMPLETECDRAUX_IPP
Expand Down
Loading