Skip to content
Snippets Groups Projects
Commit 42ba85c1 authored by Jeremie Deray's avatar Jeremie Deray
Browse files

proper CMAKE_MODULE_PATH & missing Eigen 3 deps

parent 9d5d4815
No related branches found
No related tags found
1 merge request!91catkin build
...@@ -4,11 +4,14 @@ MESSAGE("Starting WOLF CMakeLists ...") ...@@ -4,11 +4,14 @@ MESSAGE("Starting WOLF CMakeLists ...")
CMAKE_MINIMUM_REQUIRED(VERSION 2.8) CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
#CMAKE modules #CMAKE modules
SET(CMAKE_MODULE_PATH ${CMAKE_ROOT}/Modules/; ../cmake_modules)
MESSAGE(STATUS ${CMAKE_MODULE_PATH})
SET(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake_modules")
MESSAGE(STATUS ${CMAKE_MODULE_PATH})
#find dependencies. #find dependencies.
FIND_PACKAGE(Eigen 3 REQUIRED)
FIND_PACKAGE(Ceres QUIET) #Ceres is not required FIND_PACKAGE(Ceres QUIET) #Ceres is not required
IF(Ceres_FOUND) IF(Ceres_FOUND)
MESSAGE("Ceres Library FOUND: Ceres related sources will be built.") MESSAGE("Ceres Library FOUND: Ceres related sources will be built.")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment