Primo commit Completo
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
prefix=/home/emanuele/Documents/GestioneMacchine/Robot_Incollaggio/Software/roboglue_ros_ws/install
|
||||
|
||||
Name: moveit_tutorials
|
||||
Description: Description of moveit_tutorials
|
||||
Version: 0.1.0
|
||||
Cflags: -I/home/emanuele/Documents/GestioneMacchine/Robot_Incollaggio/Software/roboglue_ros_ws/install/include -I/usr/include/eigen3
|
||||
Libs: -L/home/emanuele/Documents/GestioneMacchine/Robot_Incollaggio/Software/roboglue_ros_ws/install/lib -linteractivity_utils
|
||||
Requires: moveit_core moveit_visual_tools moveit_ros_planning_interface interactive_markers
|
||||
@@ -0,0 +1,14 @@
|
||||
# generated from catkin/cmake/template/pkgConfig-version.cmake.in
|
||||
set(PACKAGE_VERSION "0.1.0")
|
||||
|
||||
set(PACKAGE_VERSION_EXACT False)
|
||||
set(PACKAGE_VERSION_COMPATIBLE False)
|
||||
|
||||
if("${PACKAGE_FIND_VERSION}" VERSION_EQUAL "${PACKAGE_VERSION}")
|
||||
set(PACKAGE_VERSION_EXACT True)
|
||||
set(PACKAGE_VERSION_COMPATIBLE True)
|
||||
endif()
|
||||
|
||||
if("${PACKAGE_FIND_VERSION}" VERSION_LESS "${PACKAGE_VERSION}")
|
||||
set(PACKAGE_VERSION_COMPATIBLE True)
|
||||
endif()
|
||||
@@ -0,0 +1,198 @@
|
||||
# generated from catkin/cmake/template/pkgConfig.cmake.in
|
||||
|
||||
# append elements to a list and remove existing duplicates from the list
|
||||
# copied from catkin/cmake/list_append_deduplicate.cmake to keep pkgConfig
|
||||
# self contained
|
||||
macro(_list_append_deduplicate listname)
|
||||
if(NOT "${ARGN}" STREQUAL "")
|
||||
if(${listname})
|
||||
list(REMOVE_ITEM ${listname} ${ARGN})
|
||||
endif()
|
||||
list(APPEND ${listname} ${ARGN})
|
||||
endif()
|
||||
endmacro()
|
||||
|
||||
# append elements to a list if they are not already in the list
|
||||
# copied from catkin/cmake/list_append_unique.cmake to keep pkgConfig
|
||||
# self contained
|
||||
macro(_list_append_unique listname)
|
||||
foreach(_item ${ARGN})
|
||||
list(FIND ${listname} ${_item} _index)
|
||||
if(_index EQUAL -1)
|
||||
list(APPEND ${listname} ${_item})
|
||||
endif()
|
||||
endforeach()
|
||||
endmacro()
|
||||
|
||||
# pack a list of libraries with optional build configuration keywords
|
||||
# copied from catkin/cmake/catkin_libraries.cmake to keep pkgConfig
|
||||
# self contained
|
||||
macro(_pack_libraries_with_build_configuration VAR)
|
||||
set(${VAR} "")
|
||||
set(_argn ${ARGN})
|
||||
list(LENGTH _argn _count)
|
||||
set(_index 0)
|
||||
while(${_index} LESS ${_count})
|
||||
list(GET _argn ${_index} lib)
|
||||
if("${lib}" MATCHES "^(debug|optimized|general)$")
|
||||
math(EXPR _index "${_index} + 1")
|
||||
if(${_index} EQUAL ${_count})
|
||||
message(FATAL_ERROR "_pack_libraries_with_build_configuration() the list of libraries '${ARGN}' ends with '${lib}' which is a build configuration keyword and must be followed by a library")
|
||||
endif()
|
||||
list(GET _argn ${_index} library)
|
||||
list(APPEND ${VAR} "${lib}${CATKIN_BUILD_CONFIGURATION_KEYWORD_SEPARATOR}${library}")
|
||||
else()
|
||||
list(APPEND ${VAR} "${lib}")
|
||||
endif()
|
||||
math(EXPR _index "${_index} + 1")
|
||||
endwhile()
|
||||
endmacro()
|
||||
|
||||
# unpack a list of libraries with optional build configuration keyword prefixes
|
||||
# copied from catkin/cmake/catkin_libraries.cmake to keep pkgConfig
|
||||
# self contained
|
||||
macro(_unpack_libraries_with_build_configuration VAR)
|
||||
set(${VAR} "")
|
||||
foreach(lib ${ARGN})
|
||||
string(REGEX REPLACE "^(debug|optimized|general)${CATKIN_BUILD_CONFIGURATION_KEYWORD_SEPARATOR}(.+)$" "\\1;\\2" lib "${lib}")
|
||||
list(APPEND ${VAR} "${lib}")
|
||||
endforeach()
|
||||
endmacro()
|
||||
|
||||
|
||||
if(moveit_tutorials_CONFIG_INCLUDED)
|
||||
return()
|
||||
endif()
|
||||
set(moveit_tutorials_CONFIG_INCLUDED TRUE)
|
||||
|
||||
# set variables for source/devel/install prefixes
|
||||
if("FALSE" STREQUAL "TRUE")
|
||||
set(moveit_tutorials_SOURCE_PREFIX /home/emanuele/Documents/GestioneMacchine/Robot_Incollaggio/Software/roboglue_ros_ws/src/moveit_tutorials)
|
||||
set(moveit_tutorials_DEVEL_PREFIX /home/emanuele/Documents/GestioneMacchine/Robot_Incollaggio/Software/roboglue_ros_ws/devel)
|
||||
set(moveit_tutorials_INSTALL_PREFIX "")
|
||||
set(moveit_tutorials_PREFIX ${moveit_tutorials_DEVEL_PREFIX})
|
||||
else()
|
||||
set(moveit_tutorials_SOURCE_PREFIX "")
|
||||
set(moveit_tutorials_DEVEL_PREFIX "")
|
||||
set(moveit_tutorials_INSTALL_PREFIX /home/emanuele/Documents/GestioneMacchine/Robot_Incollaggio/Software/roboglue_ros_ws/install)
|
||||
set(moveit_tutorials_PREFIX ${moveit_tutorials_INSTALL_PREFIX})
|
||||
endif()
|
||||
|
||||
# warn when using a deprecated package
|
||||
if(NOT "" STREQUAL "")
|
||||
set(_msg "WARNING: package 'moveit_tutorials' is deprecated")
|
||||
# append custom deprecation text if available
|
||||
if(NOT "" STREQUAL "TRUE")
|
||||
set(_msg "${_msg} ()")
|
||||
endif()
|
||||
message("${_msg}")
|
||||
endif()
|
||||
|
||||
# flag project as catkin-based to distinguish if a find_package()-ed project is a catkin project
|
||||
set(moveit_tutorials_FOUND_CATKIN_PROJECT TRUE)
|
||||
|
||||
if(NOT "include;/usr/include/eigen3 " STREQUAL " ")
|
||||
set(moveit_tutorials_INCLUDE_DIRS "")
|
||||
set(_include_dirs "include;/usr/include/eigen3")
|
||||
if(NOT " " STREQUAL " ")
|
||||
set(_report "Check the issue tracker '' and consider creating a ticket if the problem has not been reported yet.")
|
||||
elseif(NOT " " STREQUAL " ")
|
||||
set(_report "Check the website '' for information and consider reporting the problem.")
|
||||
else()
|
||||
set(_report "Report the problem to the maintainer 'Dave Coleman <dave@picknik.ai>, Mike Lautman <mike@picknik.ai>' and request to fix the problem.")
|
||||
endif()
|
||||
foreach(idir ${_include_dirs})
|
||||
if(IS_ABSOLUTE ${idir} AND IS_DIRECTORY ${idir})
|
||||
set(include ${idir})
|
||||
elseif("${idir} " STREQUAL "include ")
|
||||
get_filename_component(include "${moveit_tutorials_DIR}/../../../include" ABSOLUTE)
|
||||
if(NOT IS_DIRECTORY ${include})
|
||||
message(FATAL_ERROR "Project 'moveit_tutorials' specifies '${idir}' as an include dir, which is not found. It does not exist in '${include}'. ${_report}")
|
||||
endif()
|
||||
else()
|
||||
message(FATAL_ERROR "Project 'moveit_tutorials' specifies '${idir}' as an include dir, which is not found. It does neither exist as an absolute directory nor in '/home/emanuele/Documents/GestioneMacchine/Robot_Incollaggio/Software/roboglue_ros_ws/install/${idir}'. ${_report}")
|
||||
endif()
|
||||
_list_append_unique(moveit_tutorials_INCLUDE_DIRS ${include})
|
||||
endforeach()
|
||||
endif()
|
||||
|
||||
set(libraries "interactivity_utils")
|
||||
foreach(library ${libraries})
|
||||
# keep build configuration keywords, target names and absolute libraries as-is
|
||||
if("${library}" MATCHES "^(debug|optimized|general)$")
|
||||
list(APPEND moveit_tutorials_LIBRARIES ${library})
|
||||
elseif(TARGET ${library})
|
||||
list(APPEND moveit_tutorials_LIBRARIES ${library})
|
||||
elseif(IS_ABSOLUTE ${library})
|
||||
list(APPEND moveit_tutorials_LIBRARIES ${library})
|
||||
else()
|
||||
set(lib_path "")
|
||||
set(lib "${library}-NOTFOUND")
|
||||
# since the path where the library is found is returned we have to iterate over the paths manually
|
||||
foreach(path /home/emanuele/Documents/GestioneMacchine/Robot_Incollaggio/Software/roboglue_ros_ws/install/lib;/home/emanuele/Documents/GestioneMacchine/Robot_Incollaggio/Software/roboglue_ros_ws/devel/lib;/opt/ros/kinetic/lib)
|
||||
find_library(lib ${library}
|
||||
PATHS ${path}
|
||||
NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH)
|
||||
if(lib)
|
||||
set(lib_path ${path})
|
||||
break()
|
||||
endif()
|
||||
endforeach()
|
||||
if(lib)
|
||||
_list_append_unique(moveit_tutorials_LIBRARY_DIRS ${lib_path})
|
||||
list(APPEND moveit_tutorials_LIBRARIES ${lib})
|
||||
else()
|
||||
# as a fall back for non-catkin libraries try to search globally
|
||||
find_library(lib ${library})
|
||||
if(NOT lib)
|
||||
message(FATAL_ERROR "Project '${PROJECT_NAME}' tried to find library '${library}'. The library is neither a target nor built/installed properly. Did you compile project 'moveit_tutorials'? Did you find_package() it before the subdirectory containing its code is included?")
|
||||
endif()
|
||||
list(APPEND moveit_tutorials_LIBRARIES ${lib})
|
||||
endif()
|
||||
endif()
|
||||
endforeach()
|
||||
|
||||
set(moveit_tutorials_EXPORTED_TARGETS "")
|
||||
# create dummy targets for exported code generation targets to make life of users easier
|
||||
foreach(t ${moveit_tutorials_EXPORTED_TARGETS})
|
||||
if(NOT TARGET ${t})
|
||||
add_custom_target(${t})
|
||||
endif()
|
||||
endforeach()
|
||||
|
||||
set(depends "moveit_core;moveit_visual_tools;moveit_ros_planning_interface;interactive_markers")
|
||||
foreach(depend ${depends})
|
||||
string(REPLACE " " ";" depend_list ${depend})
|
||||
# the package name of the dependency must be kept in a unique variable so that it is not overwritten in recursive calls
|
||||
list(GET depend_list 0 moveit_tutorials_dep)
|
||||
list(LENGTH depend_list count)
|
||||
if(${count} EQUAL 1)
|
||||
# simple dependencies must only be find_package()-ed once
|
||||
if(NOT ${moveit_tutorials_dep}_FOUND)
|
||||
find_package(${moveit_tutorials_dep} REQUIRED NO_MODULE)
|
||||
endif()
|
||||
else()
|
||||
# dependencies with components must be find_package()-ed again
|
||||
list(REMOVE_AT depend_list 0)
|
||||
find_package(${moveit_tutorials_dep} REQUIRED NO_MODULE ${depend_list})
|
||||
endif()
|
||||
_list_append_unique(moveit_tutorials_INCLUDE_DIRS ${${moveit_tutorials_dep}_INCLUDE_DIRS})
|
||||
|
||||
# merge build configuration keywords with library names to correctly deduplicate
|
||||
_pack_libraries_with_build_configuration(moveit_tutorials_LIBRARIES ${moveit_tutorials_LIBRARIES})
|
||||
_pack_libraries_with_build_configuration(_libraries ${${moveit_tutorials_dep}_LIBRARIES})
|
||||
_list_append_deduplicate(moveit_tutorials_LIBRARIES ${_libraries})
|
||||
# undo build configuration keyword merging after deduplication
|
||||
_unpack_libraries_with_build_configuration(moveit_tutorials_LIBRARIES ${moveit_tutorials_LIBRARIES})
|
||||
|
||||
_list_append_unique(moveit_tutorials_LIBRARY_DIRS ${${moveit_tutorials_dep}_LIBRARY_DIRS})
|
||||
list(APPEND moveit_tutorials_EXPORTED_TARGETS ${${moveit_tutorials_dep}_EXPORTED_TARGETS})
|
||||
endforeach()
|
||||
|
||||
set(pkg_cfg_extras "")
|
||||
foreach(extra ${pkg_cfg_extras})
|
||||
if(NOT IS_ABSOLUTE ${extra})
|
||||
set(extra ${moveit_tutorials_DIR}/${extra})
|
||||
endif()
|
||||
include(${extra})
|
||||
endforeach()
|
||||
@@ -0,0 +1 @@
|
||||
set(ORDERED_PATHS "/opt/ros/kinetic/lib")
|
||||
16
build/moveit_tutorials/catkin_generated/package.cmake
Normal file
16
build/moveit_tutorials/catkin_generated/package.cmake
Normal file
@@ -0,0 +1,16 @@
|
||||
set(_CATKIN_CURRENT_PACKAGE "moveit_tutorials")
|
||||
set(moveit_tutorials_VERSION "0.1.0")
|
||||
set(moveit_tutorials_MAINTAINER "Dave Coleman <dave@picknik.ai>, Mike Lautman <mike@picknik.ai>")
|
||||
set(moveit_tutorials_PACKAGE_FORMAT "1")
|
||||
set(moveit_tutorials_BUILD_DEPENDS "pluginlib" "eigen" "moveit_core" "moveit_ros_planning_interface" "moveit_ros_perception" "interactive_markers" "geometric_shapes" "moveit_visual_tools" "pcl_ros" "pcl_conversions" "rosbag" "tf2_ros" "tf2_eigen" "tf2_geometry_msgs")
|
||||
set(moveit_tutorials_BUILD_EXPORT_DEPENDS "panda_moveit_config" "pluginlib" "moveit_core" "moveit_commander" "moveit_fake_controller_manager" "moveit_ros_planning_interface" "moveit_ros_perception" "interactive_markers" "moveit_visual_tools" "joy" "pcl_ros" "pcl_conversions" "rosbag" "tf2_ros" "tf2_eigen" "tf2_geometry_msgs")
|
||||
set(moveit_tutorials_BUILDTOOL_DEPENDS "catkin")
|
||||
set(moveit_tutorials_BUILDTOOL_EXPORT_DEPENDS )
|
||||
set(moveit_tutorials_EXEC_DEPENDS "panda_moveit_config" "pluginlib" "moveit_core" "moveit_commander" "moveit_fake_controller_manager" "moveit_ros_planning_interface" "moveit_ros_perception" "interactive_markers" "moveit_visual_tools" "joy" "pcl_ros" "pcl_conversions" "rosbag" "tf2_ros" "tf2_eigen" "tf2_geometry_msgs")
|
||||
set(moveit_tutorials_RUN_DEPENDS "panda_moveit_config" "pluginlib" "moveit_core" "moveit_commander" "moveit_fake_controller_manager" "moveit_ros_planning_interface" "moveit_ros_perception" "interactive_markers" "moveit_visual_tools" "joy" "pcl_ros" "pcl_conversions" "rosbag" "tf2_ros" "tf2_eigen" "tf2_geometry_msgs")
|
||||
set(moveit_tutorials_TEST_DEPENDS )
|
||||
set(moveit_tutorials_DOC_DEPENDS )
|
||||
set(moveit_tutorials_URL_WEBSITE "")
|
||||
set(moveit_tutorials_URL_BUGTRACKER "")
|
||||
set(moveit_tutorials_URL_REPOSITORY "")
|
||||
set(moveit_tutorials_DEPRECATED "")
|
||||
@@ -0,0 +1,8 @@
|
||||
# generated from catkin/cmake/template/pkg.context.pc.in
|
||||
CATKIN_PACKAGE_PREFIX = ""
|
||||
PROJECT_PKG_CONFIG_INCLUDE_DIRS = "/home/emanuele/Documents/GestioneMacchine/Robot_Incollaggio/Software/roboglue_ros_ws/src/moveit_tutorials/doc/interactivity/include;/usr/include/eigen3".split(';') if "/home/emanuele/Documents/GestioneMacchine/Robot_Incollaggio/Software/roboglue_ros_ws/src/moveit_tutorials/doc/interactivity/include;/usr/include/eigen3" != "" else []
|
||||
PROJECT_CATKIN_DEPENDS = "moveit_core;moveit_visual_tools;moveit_ros_planning_interface;interactive_markers".replace(';', ' ')
|
||||
PKG_CONFIG_LIBRARIES_WITH_PREFIX = "-linteractivity_utils".split(';') if "-linteractivity_utils" != "" else []
|
||||
PROJECT_NAME = "moveit_tutorials"
|
||||
PROJECT_SPACE_DIR = "/home/emanuele/Documents/GestioneMacchine/Robot_Incollaggio/Software/roboglue_ros_ws/devel"
|
||||
PROJECT_VERSION = "0.1.0"
|
||||
@@ -0,0 +1,8 @@
|
||||
# generated from catkin/cmake/template/pkg.context.pc.in
|
||||
CATKIN_PACKAGE_PREFIX = ""
|
||||
PROJECT_PKG_CONFIG_INCLUDE_DIRS = "/home/emanuele/Documents/GestioneMacchine/Robot_Incollaggio/Software/roboglue_ros_ws/install/include;/usr/include/eigen3".split(';') if "/home/emanuele/Documents/GestioneMacchine/Robot_Incollaggio/Software/roboglue_ros_ws/install/include;/usr/include/eigen3" != "" else []
|
||||
PROJECT_CATKIN_DEPENDS = "moveit_core;moveit_visual_tools;moveit_ros_planning_interface;interactive_markers".replace(';', ' ')
|
||||
PKG_CONFIG_LIBRARIES_WITH_PREFIX = "-linteractivity_utils".split(';') if "-linteractivity_utils" != "" else []
|
||||
PROJECT_NAME = "moveit_tutorials"
|
||||
PROJECT_SPACE_DIR = "/home/emanuele/Documents/GestioneMacchine/Robot_Incollaggio/Software/roboglue_ros_ws/install"
|
||||
PROJECT_VERSION = "0.1.0"
|
||||
@@ -0,0 +1,49 @@
|
||||
<?xml version="1.0"?>
|
||||
<package>
|
||||
<name>moveit_tutorials</name>
|
||||
<version>0.1.0</version>
|
||||
<description>The moveit_tutorials package</description>
|
||||
<license>BSD</license>
|
||||
|
||||
<author email="sachinc@willowgarage.com">Sachin Chitta</author>
|
||||
<author email="dave@picknik.ai">Dave Coleman</author>
|
||||
<author email="mike@picknik.ai">Mike Lautman</author>
|
||||
|
||||
<maintainer email="dave@picknik.ai">Dave Coleman</maintainer>
|
||||
<maintainer email="mike@picknik.ai">Mike Lautman</maintainer>
|
||||
|
||||
<buildtool_depend>catkin</buildtool_depend>
|
||||
|
||||
<build_depend>pluginlib</build_depend>
|
||||
<build_depend>eigen</build_depend>
|
||||
<build_depend>moveit_core</build_depend>
|
||||
<build_depend>moveit_ros_planning_interface</build_depend>
|
||||
<build_depend>moveit_ros_perception</build_depend>
|
||||
<build_depend>interactive_markers</build_depend>
|
||||
<build_depend>geometric_shapes</build_depend>
|
||||
<build_depend>moveit_visual_tools</build_depend>
|
||||
<build_depend>pcl_ros</build_depend>
|
||||
<build_depend>pcl_conversions</build_depend>
|
||||
<build_depend>rosbag</build_depend>
|
||||
<build_depend>tf2_ros</build_depend>
|
||||
<build_depend>tf2_eigen</build_depend>
|
||||
<build_depend>tf2_geometry_msgs</build_depend>
|
||||
|
||||
<run_depend>panda_moveit_config</run_depend>
|
||||
<run_depend>pluginlib</run_depend>
|
||||
<run_depend>moveit_core</run_depend>
|
||||
<run_depend>moveit_commander</run_depend>
|
||||
<run_depend>moveit_fake_controller_manager</run_depend>
|
||||
<run_depend>moveit_ros_planning_interface</run_depend>
|
||||
<run_depend>moveit_ros_perception</run_depend>
|
||||
<run_depend>interactive_markers</run_depend>
|
||||
<run_depend>moveit_visual_tools</run_depend>
|
||||
<run_depend>joy</run_depend>
|
||||
<run_depend>pcl_ros</run_depend>
|
||||
<run_depend>pcl_conversions</run_depend>
|
||||
<run_depend>rosbag</run_depend>
|
||||
<run_depend>tf2_ros</run_depend>
|
||||
<run_depend>tf2_eigen</run_depend>
|
||||
<run_depend>tf2_geometry_msgs</run_depend>
|
||||
|
||||
</package>
|
||||
@@ -0,0 +1,8 @@
|
||||
prefix=@PROJECT_SPACE_DIR
|
||||
|
||||
Name: @(CATKIN_PACKAGE_PREFIX + PROJECT_NAME)
|
||||
Description: Description of @PROJECT_NAME
|
||||
Version: @PROJECT_VERSION
|
||||
Cflags: @(' '.join(['-I%s' % include for include in PROJECT_PKG_CONFIG_INCLUDE_DIRS]))
|
||||
Libs: -L@PROJECT_SPACE_DIR/lib @(' '.join(PKG_CONFIG_LIBRARIES_WITH_PREFIX))
|
||||
Requires: @(PROJECT_CATKIN_DEPENDS)
|
||||
Reference in New Issue
Block a user