delete build dir and add submodules

This commit is contained in:
Sem van der Hoeven
2023-04-12 15:32:42 +00:00
parent 2560d3a92d
commit e2639a8fe1
9068 changed files with 0 additions and 1993020 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1,49 +0,0 @@
# generated from
# rosidl_cmake/cmake/template/rosidl_cmake_export_typesupport_libraries.cmake.in
set(_exported_typesupport_libraries
"__rosidl_typesupport_fastrtps_c:px4_msgs__rosidl_typesupport_fastrtps_c;__rosidl_typesupport_fastrtps_cpp:px4_msgs__rosidl_typesupport_fastrtps_cpp")
# populate px4_msgs_LIBRARIES_<suffix>
if(NOT _exported_typesupport_libraries STREQUAL "")
# loop over typesupport libraries
foreach(_tuple ${_exported_typesupport_libraries})
string(REPLACE ":" ";" _tuple "${_tuple}")
list(GET _tuple 0 _suffix)
list(GET _tuple 1 _library)
if(NOT IS_ABSOLUTE "${_library}")
# search for library target relative to this CMake file
set(_lib "NOTFOUND")
find_library(
_lib NAMES "${_library}"
PATHS "${px4_msgs_DIR}/../../../lib"
NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH
)
if(NOT _lib)
# the library wasn't found
message(FATAL_ERROR
"Package 'px4_msgs' exports the typesupport library '${_library}' which couldn't be found")
elseif(NOT IS_ABSOLUTE "${_lib}")
# the found library must be an absolute path
message(FATAL_ERROR
"Package 'px4_msgs' found the typesupport library '${_library}' at '${_lib}' "
"which is not an absolute path")
elseif(NOT EXISTS "${_lib}")
# the found library must exist
message(FATAL_ERROR "Package 'px4_msgs' found the typesupport library '${_lib}' which doesn't exist")
else()
list(APPEND px4_msgs_LIBRARIES${_suffix} ${_cfg} "${_lib}")
endif()
else()
if(NOT EXISTS "${_library}")
# the found library must exist
message(WARNING "Package 'px4_msgs' exports the typesupport library '${_library}' which doesn't exist")
else()
list(APPEND px4_msgs_LIBRARIES${_suffix} "${_library}")
endif()
endif()
endforeach()
endif()

View File

@@ -1,23 +0,0 @@
# generated from
# rosidl_cmake/cmake/template/rosidl_cmake_export_typesupport_targets.cmake.in
set(_exported_typesupport_targets
"__rosidl_generator_c:px4_msgs__rosidl_generator_c;__rosidl_typesupport_fastrtps_c:px4_msgs__rosidl_typesupport_fastrtps_c;__rosidl_generator_cpp:px4_msgs__rosidl_generator_cpp;__rosidl_typesupport_fastrtps_cpp:px4_msgs__rosidl_typesupport_fastrtps_cpp;__rosidl_typesupport_introspection_c:px4_msgs__rosidl_typesupport_introspection_c;__rosidl_typesupport_c:px4_msgs__rosidl_typesupport_c;__rosidl_typesupport_introspection_cpp:px4_msgs__rosidl_typesupport_introspection_cpp;__rosidl_typesupport_cpp:px4_msgs__rosidl_typesupport_cpp;__rosidl_generator_py:px4_msgs__rosidl_generator_py")
# populate px4_msgs_TARGETS_<suffix>
if(NOT _exported_typesupport_targets STREQUAL "")
# loop over typesupport targets
foreach(_tuple ${_exported_typesupport_targets})
string(REPLACE ":" ";" _tuple "${_tuple}")
list(GET _tuple 0 _suffix)
list(GET _tuple 1 _target)
set(_target "px4_msgs::${_target}")
if(NOT TARGET "${_target}")
# the exported target must exist
message(WARNING "Package 'px4_msgs' exports the typesupport target '${_target}' which doesn't exist")
else()
list(APPEND px4_msgs_TARGETS${_suffix} "${_target}")
endif()
endforeach()
endif()