Skip to content
Snippets Groups Projects
Commit 4e80da64 authored by Studer Gabriel's avatar Studer Gabriel
Browse files

Eigen is not required anymore

parent 13278e62
No related branches found
Tags 3.1.0-rc
No related merge requests found
......@@ -53,9 +53,6 @@ find_package(Python 2.7.0 REQUIRED)
find_package(OPENSTRUCTURE 1.7 REQUIRED
COMPONENTS mol seq seq_alg mol_alg conop)
find_package(Eigen 3.0.0 REQUIRED)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY)
set(_BOOST_MIN_VERSION 1.53)
find_package(Boost ${_BOOST_MIN_VERSION}
......@@ -72,7 +69,6 @@ set(Boost_LIBRARIES)
find_package(Python 2.7.0 REQUIRED)
include_directories(${Boost_INCLUDE_DIRS}
${EIGEN3_INCLUDE_DIR}
${OST_INCLUDE_DIR})
add_subdirectory(data)
......
# - Try to find Eigen3 lib
# Once done this will define
#
# EIGEN3_FOUND - system has eigen lib
# EIGEN3_INCLUDE_DIRS - the eigen include directories
find_path(EIGEN3_INCLUDE_DIR NAMES Eigen/Core
PATH_SUFFIXES eigen3
)
set(EIGEN3_INCLUDE_DIRS ${EIGEN3_INCLUDE_DIR})
include (FindPackageHandleStandardArgs)
find_package_handle_standard_args (EIGEN DEFAULT_MSG EIGEN3_INCLUDE_DIR)
mark_as_advanced (EIGEN3_INCLUDE_DIR)
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