Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
ProMod3
Manage
Activity
Members
Plan
Jira
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Contributor 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
ProMod3
Commits
b3e784e2
Commit
b3e784e2
authored
10 years ago
by
Bienchen
Browse files
Options
Downloads
Patches
Plain Diff
Add Eigen3 to CMake
parent
0a4fb3fe
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CMakeLists.txt
+14
-4
14 additions, 4 deletions
CMakeLists.txt
COPYING.BSD
+26
-0
26 additions, 0 deletions
COPYING.BSD
COPYING.README
+2
-0
2 additions, 0 deletions
COPYING.README
cmake_support/FindEigen3.cmake
+82
-0
82 additions, 0 deletions
cmake_support/FindEigen3.cmake
with
124 additions
and
4 deletions
CMakeLists.txt
+
14
−
4
View file @
b3e784e2
...
...
@@ -9,7 +9,7 @@
cmake_minimum_required
(
VERSION 2.6.4 FATAL_ERROR
)
set
(
CMAKE_MODULE_PATH
${
CMAKE_MODULE_PATH
}
${
CMAKE_SOURCE_DIR
}
/cmake_support
)
project
(
P
ROMOD
3 CXX C
)
project
(
P
roMod
3 CXX C
)
include
(
PROMOD3
)
...
...
@@ -66,10 +66,19 @@ if (CMAKE_COMPILER_IS_GNUCXX)
endif
(
"
${
CMAKE_CXX_COMPILER_VERSION
}
"
VERSION_GREATER
"4.6"
)
endif
()
# additional packages/ headers/ etc.
# Eigen3 is mandatory right now but may vanish once OST switches to the same
# version.
find_package
(
Eigen3 3.2.1 REQUIRED
)
if
(
NOT EIGEN3_FOUND
)
message
(
FATAL_ERROR
"Eigen3 is essential for building
${
PROJECT_NAME
}
."
)
endif
()
# basic environment
include_directories
(
${
Boost_INCLUDE_DIRS
}
${
OST_INCLUDE_DIR
}
${
QMEAN_INCLUDE_DIR
}
)
${
QMEAN_INCLUDE_DIR
}
${
EIGEN3_INCLUDE_DIR
}
)
set
(
FILES_TO_BE_REMOVED
${
PROJECT_BINARY_DIR
}
/stage
)
set_directory_properties
(
PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES
...
...
@@ -89,8 +98,9 @@ if(NOT DISABLE_DOCUMENTATION)
endif
()
## report setup
message
(
STATUS
"PRO
MOD3
will be built with the following options:
\n
"
message
(
STATUS
"
${
PRO
JECT_NAME
}
will be built with the following options:
\n
"
" OpenStructure (-DOST_ROOT) :
${
OST_ROOT
}
\n
"
" QMEAN (-DQMEAN_ROOT) :
${
QMEAN_ROOT
}
\n
"
" Optimized (-DOPTIMIZE) :
${
_OPT
}
\n
"
" Python :
${
PYTHON_BINARY
}
\n
"
)
" Python :
${
PYTHON_BINARY
}
\n
"
" Eigen3 :
${
EIGEN3_INCLUDE_DIR
}
\n
"
)
This diff is collapsed.
Click to expand it.
COPYING.BSD
0 → 100644
+
26
−
0
View file @
b3e784e2
/*
Copyright (c) 2011, Intel Corporation. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of Intel Corporation nor the names of its contributors may
be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
This diff is collapsed.
Click to expand it.
COPYING.README
0 → 100644
+
2
−
0
View file @
b3e784e2
Some files contain third-party code under BSD licenses, whence the other
COPYING.* files here.
This diff is collapsed.
Click to expand it.
cmake_support/FindEigen3.cmake
0 → 100644
+
82
−
0
View file @
b3e784e2
# - Try to find Eigen3 lib
#
# This module supports requiring a minimum version, e.g. you can do
# find_package(Eigen3 3.1.2)
# to require version 3.1.2 or newer of Eigen3.
#
# Once done this will define
#
# EIGEN3_FOUND - system has eigen lib with correct version
# EIGEN3_INCLUDE_DIR - the eigen include directory
# EIGEN3_VERSION - eigen version
# Copyright (c) 2006, 2007 Montel Laurent, <montel@kde.org>
# Copyright (c) 2008, 2009 Gael Guennebaud, <g.gael@free.fr>
# Copyright (c) 2009 Benoit Jacob <jacob.benoit.1@gmail.com>
# Redistribution and use is allowed according to the terms of the 2-clause BSD
# license.
if
(
NOT Eigen3_FIND_VERSION
)
if
(
NOT Eigen3_FIND_VERSION_MAJOR
)
set
(
Eigen3_FIND_VERSION_MAJOR 2
)
endif
(
NOT Eigen3_FIND_VERSION_MAJOR
)
if
(
NOT Eigen3_FIND_VERSION_MINOR
)
set
(
Eigen3_FIND_VERSION_MINOR 91
)
endif
(
NOT Eigen3_FIND_VERSION_MINOR
)
if
(
NOT Eigen3_FIND_VERSION_PATCH
)
set
(
Eigen3_FIND_VERSION_PATCH 0
)
endif
(
NOT Eigen3_FIND_VERSION_PATCH
)
set
(
Eigen3_FIND_VERSION
"
${
Eigen3_FIND_VERSION_MAJOR
}
.
${
Eigen3_FIND_VERSION_MINOR
}
.
${
Eigen3_FIND_VERSION_PATCH
}
"
)
endif
(
NOT Eigen3_FIND_VERSION
)
macro
(
_eigen3_check_version
)
file
(
READ
"
${
EIGEN3_INCLUDE_DIR
}
/Eigen/src/Core/util/Macros.h"
_eigen3_version_header
)
string
(
REGEX MATCH
"define[
\t
]+EIGEN_WORLD_VERSION[
\t
]+([0-9]+)"
_eigen3_world_version_match
"
${
_eigen3_version_header
}
"
)
set
(
EIGEN3_WORLD_VERSION
"
${
CMAKE_MATCH_1
}
"
)
string
(
REGEX MATCH
"define[
\t
]+EIGEN_MAJOR_VERSION[
\t
]+([0-9]+)"
_eigen3_major_version_match
"
${
_eigen3_version_header
}
"
)
set
(
EIGEN3_MAJOR_VERSION
"
${
CMAKE_MATCH_1
}
"
)
string
(
REGEX MATCH
"define[
\t
]+EIGEN_MINOR_VERSION[
\t
]+([0-9]+)"
_eigen3_minor_version_match
"
${
_eigen3_version_header
}
"
)
set
(
EIGEN3_MINOR_VERSION
"
${
CMAKE_MATCH_1
}
"
)
set
(
EIGEN3_VERSION
${
EIGEN3_WORLD_VERSION
}
.
${
EIGEN3_MAJOR_VERSION
}
.
${
EIGEN3_MINOR_VERSION
}
)
if
(
${
EIGEN3_VERSION
}
VERSION_LESS
${
Eigen3_FIND_VERSION
}
)
set
(
EIGEN3_VERSION_OK FALSE
)
else
(
${
EIGEN3_VERSION
}
VERSION_LESS
${
Eigen3_FIND_VERSION
}
)
set
(
EIGEN3_VERSION_OK TRUE
)
endif
(
${
EIGEN3_VERSION
}
VERSION_LESS
${
Eigen3_FIND_VERSION
}
)
if
(
NOT EIGEN3_VERSION_OK
)
message
(
STATUS
"Eigen3 version
${
EIGEN3_VERSION
}
found in
${
EIGEN3_INCLUDE_DIR
}
, "
"but at least version
${
Eigen3_FIND_VERSION
}
is required"
)
endif
(
NOT EIGEN3_VERSION_OK
)
endmacro
(
_eigen3_check_version
)
if
(
EIGEN3_INCLUDE_DIR
)
# in cache already
_eigen3_check_version
()
set
(
EIGEN3_FOUND
${
EIGEN3_VERSION_OK
}
)
else
(
EIGEN3_INCLUDE_DIR
)
find_path
(
EIGEN3_INCLUDE_DIR NAMES signature_of_eigen3_matrix_library
PATHS
${
CMAKE_INSTALL_PREFIX
}
/include
${
KDE4_INCLUDE_DIR
}
PATH_SUFFIXES eigen3 eigen
)
if
(
EIGEN3_INCLUDE_DIR
)
_eigen3_check_version
()
endif
(
EIGEN3_INCLUDE_DIR
)
include
(
FindPackageHandleStandardArgs
)
find_package_handle_standard_args
(
Eigen3 DEFAULT_MSG EIGEN3_INCLUDE_DIR EIGEN3_VERSION_OK
)
mark_as_advanced
(
EIGEN3_INCLUDE_DIR
)
endif
(
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