cmake_minimum_required(VERSION 2.8.3) project(homer_nav_libs) find_package(catkin REQUIRED COMPONENTS roscpp geometry_msgs tf cmake_modules ) find_package(Eigen REQUIRED) catkin_package( INCLUDE_DIRS src LIBRARIES Explorer SpeedControl MappingMath CATKIN_DEPENDS roscpp geometry_msgs tf DEPENDS Eigen) include_directories( src ${catkin_INCLUDE_DIRS} ${Eigen_INCLUDE_DIRS} $ENV{HOMER_DIR} ) add_subdirectory(src/Explorer) add_subdirectory(src/SpeedControl) add_subdirectory(src/Math)