-
Notifications
You must be signed in to change notification settings - Fork 18
Description
I have created a new catkin workspace named baxter_ws and I have added the chilitags repository and ros_marker repository as a catkin package in it. When i do catkin_make, i get the following error :
-- +++ processing catkin package: 'ros_markers'
-- ==> add_subdirectory(ros_markers)
-- Using these message generators: gencpp;genlisp;genpy
-- checking for one of the modules 'chilitags'
CMake Error at /usr/share/cmake-2.8/Modules/FindPkgConfig.cmake:350 (message):
None of the required 'chilitags' found
Call Stack (most recent call first):
ros_markers/CMakeLists.txt:19 (pkg_search_module)
It is being caused by this line in the CMake file (already provided on your ros_marker repository) :
find_package(PkgConfig)
pkg_search_module(CHILITAGS REQUIRED chilitags)
Any suggestions on how to fix this ?