I have this error trying to compile a package. This is the CMAKE where i have the error:
cmake_minimum_required(VERSION 2.8.3)
project(aruco_marker_detector)
## 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
cv_bridge
geometry_msgs
image_transport
roscpp
std_msgs
tf
tf_conversions
uvc_camera
)
## System dependencies are found with CMake's conventions
# find_package(Boost REQUIRED COMPONENTS system)
##############################################################################
# OpenCV
##############################################################################
find_package(OpenCV REQUIRED)
##############################################################################
# Eigen
##############################################################################
find_package(Eigen REQUIRED)
add_definitions(${EIGEN_DEFINITIONS})
##############################################################################
# AruCo
##############################################################################
find_package(aruco REQUIRED )
The error is about Aruco,the system cannot find the libraries!!
I don't really now how to fix it. I have installed aruco 1.2.4 following the instructions in this site "http://maztories.blogspot.com.es/2013/07/installing-aruco-augmented-reality.html".