Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QMEAN
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
schwede
QMEAN
Commits
4e80da64
Commit
4e80da64
authored
6 years ago
by
Studer Gabriel
Browse files
Options
Downloads
Patches
Plain Diff
Eigen is not required anymore
parent
13278e62
No related branches found
Branches containing commit
Tags
3.1.0-rc
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+0
-4
0 additions, 4 deletions
CMakeLists.txt
cmake_support/FindEigen.cmake
+0
-21
0 additions, 21 deletions
cmake_support/FindEigen.cmake
with
0 additions
and
25 deletions
CMakeLists.txt
+
0
−
4
View file @
4e80da64
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
cmake_support/FindEigen.cmake
deleted
100644 → 0
+
0
−
21
View file @
13278e62
# - 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
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment