Change remote root so the packages can be build on another machine. This is done because the Raspberry Pi 4B+ 2GB does not have enough RAM to build the px4_ros_com package

This commit is contained in:
Sem van der Hoeven
2023-04-11 20:35:15 +00:00
parent a73998f586
commit baae4cd2de
12933 changed files with 2103216 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,23 @@
# generated from
# ament_cmake_core/cmake/symlink_install/ament_cmake_symlink_install_uninstall_script.cmake.in
set(install_manifest "/home/ubuntu/ros2_ws/build/px4_msgs/symlink_install_manifest.txt")
if(NOT EXISTS "${install_manifest}")
message(FATAL_ERROR "Cannot find symlink install manifest: ${install_manifest}")
endif()
file(READ "${install_manifest}" installed_files)
string(REGEX REPLACE "\n" ";" installed_files "${installed_files}")
foreach(installed_file ${installed_files})
if(EXISTS "${installed_file}" OR IS_SYMLINK "${installed_file}")
message(STATUS "Uninstalling: ${installed_file}")
file(REMOVE "${installed_file}")
if(EXISTS "${installed_file}" OR IS_SYMLINK "${installed_file}")
message(FATAL_ERROR "Failed to remove '${installed_file}'")
endif()
# remove empty parent folders
get_filename_component(parent_path "${installed_file}" PATH)
ament_cmake_uninstall_target_remove_empty_directories("${parent_path}")
endif()
endforeach()