ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

neobonde's profile - activity

2019-03-22 11:39:26 -0500 received badge  Famous Question (source)
2019-03-22 11:39:26 -0500 received badge  Notable Question (source)
2018-04-29 22:02:08 -0500 received badge  Famous Question (source)
2017-03-23 10:06:24 -0500 received badge  Notable Question (source)
2016-11-29 20:45:57 -0500 received badge  Taxonomist
2016-11-23 07:40:42 -0500 received badge  Editor (source)
2016-11-23 07:40:05 -0500 asked a question libgeos for ros

I was curious when i saw, that when installing ros libgeos was also installed. But im not sure if i can use it, it if i can how.

Should i change something in my cmake.txt file?

2016-11-23 07:36:03 -0500 received badge  Enthusiast
2016-11-22 12:41:24 -0500 received badge  Popular Question (source)
2016-11-22 06:41:21 -0500 commented answer My own library wont include

It is a rospackage but it uses no ros specific things. it is this: http://geomalgorithms.com/a09-_avl_co...

2016-11-22 05:54:27 -0500 asked a question My own library wont include

I have made my own library, and i want to include it in an other package, but i keep running in to this problem:

CMake Warning at /opt/ros/indigo/share/catkin/cmake/catkinConfig.cmake:76 (find_package):
  Could not find a package configuration file provided by "lib_polygon" with
  any of the following names:

    lib_polygonConfig.cmake
    lib_polygon-config.cmake

  Add the installation prefix of "lib_polygon" to CMAKE_PREFIX_PATH or set
  "lib_polygon_DIR" to a directory containing one of the above files.  If
  "lib_polygon" provides a separate development package or SDK, be sure it
  has been installed.
Call Stack (most recent call first):
  ci-rss-golfpicker/ci-ros-common/ci_executors/path_recorder/CMakeLists.txt:7 (find_package)


-- Could not find the required component 'lib_polygon'. The following CMake error indicates that you either need to install the package with the same name or change your environment so that it can be found.
CMake Error at /opt/ros/indigo/share/catkin/cmake/catkinConfig.cmake:83 (find_package):
  Could not find a package configuration file provided by "lib_polygon" with
  any of the following names:

    lib_polygonConfig.cmake
    lib_polygon-config.cmake

  Add the installation prefix of "lib_polygon" to CMAKE_PREFIX_PATH or set
  "lib_polygon_DIR" to a directory containing one of the above files.  If
  "lib_polygon" provides a separate development package or SDK, be sure it
  has been installed.
Call Stack (most recent call first):
  ci-rss-golfpicker/ci-ros-common/ci_executors/path_recorder/CMakeLists.txt:7 (find_package)


-- Configuring incomplete, errors occurred!
See also "/home/bonde/catkin_ws/golfpicker/build/CMakeFiles/CMakeOutput.log".
See also "/home/bonde/catkin_ws/golfpicker/build/CMakeFiles/CMakeError.log".
make: *** [cmake_check_build_system] Error 1

My library cmake file:

    cmake_minimum_required(VERSION 2.8.3)
project(lib_polygon)

## Find catkin macros and libraries
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
## is used, also find other catkin packages
find_package(catkin REQUIRED COMPONENTS
  roscpp
  ci_msgs
  msgs
)

## System dependencies are found with CMake's conventions
# find_package(Boost REQUIRED COMPONENTS system)


## Uncomment this if the package has a setup.py. This macro ensures
## modules and global scripts declared therein get installed
## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html
# catkin_python_setup()

################################################
## Declare ROS messages, services and actions ##
################################################

## To declare and build messages, services or actions from within this
## package, follow these steps:
## * Let MSG_DEP_SET be the set of packages whose message types you use in
##   your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...).
## * In the file package.xml:
##   * add a build_depend tag for "message_generation"
##   * add a build_depend and a run_depend tag for each package in MSG_DEP_SET
##   * If MSG_DEP_SET isn't empty the following dependency has been pulled in
##     but can be declared for certainty nonetheless:
##     * add a run_depend tag for "message_runtime"
## * In this file (CMakeLists.txt):
##   * add "message_generation" and every package in MSG_DEP_SET to
##     find_package(catkin REQUIRED COMPONENTS ...)
##   * add "message_runtime" and every package in MSG_DEP_SET to
##     catkin_package(CATKIN_DEPENDS ...)
##   * uncomment the add_*_files sections below as needed
##     and list every .msg/.srv/.action file to be processed
##   * uncomment the generate_messages entry below
##   * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...)

## Generate messages in the 'msg' folder
# add_message_files(
#   FILES
#   Message1.msg
#   Message2.msg
# )

## Generate services in the 'srv' folder ...
(more)
2016-11-22 05:46:14 -0500 received badge  Popular Question (source)
2016-09-09 01:22:55 -0500 received badge  Scholar (source)
2016-09-06 06:02:15 -0500 asked a question bash script output to param

Is there a way to take the output of a bash script and use it as a param in a ros launch file. The script should also run in the same launch file