external_eigen.cmake 1.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# Copyright 2017 Nervana Systems Inc.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at

#     http://www.apache.org/licenses/LICENSE-2.0

# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Enable ExternalProject CMake module
include(ExternalProject)

17
set(EIGEN_INSTALL_DIR ${EXTERNAL_INSTALL_DIR}/eigen)
18
set(EIGEN_PROJECT eigen)
Jai Menon's avatar
Jai Menon committed
19 20
set(EIGEN_GIT_TAG d608d9f3f577118981acbdd40da9dcf6b514668a)
set(EIGEN_GIT_URL https://github.com/jmenon/eigen)
21 22

#----------------------------------------------------------------------------------------------------------
Jai Menon's avatar
Jai Menon committed
23
# Download and install Eigen
24 25 26
#----------------------------------------------------------------------------------------------------------

# The 'BUILD_BYPRODUCTS' argument was introduced in CMake 3.2.
27 28
if (${CMAKE_VERSION} VERSION_LESS 3.2)
    ExternalProject_Add(
29
        ${EIGEN_PROJECT}
Jai Menon's avatar
Jai Menon committed
30 31
        GIT_REPOSITORY ${EIGEN_GIT_URL}
        GIT_TAG ${EIGEN_GIT_TAG}
32
        UPDATE_COMMAND ""
33
        CMAKE_ARGS -DCMAKE_INSTALL_PREFIX=${EIGEN_INSTALL_DIR}
34 35 36
        )
else()
    ExternalProject_Add(
37
        ${EIGEN_PROJECT}
Jai Menon's avatar
Jai Menon committed
38 39
        GIT_REPOSITORY ${EIGEN_GIT_URL}
        GIT_TAG ${EIGEN_GIT_TAG}
40
        UPDATE_COMMAND ""
41 42
        CMAKE_ARGS -DCMAKE_INSTALL_PREFIX=${EIGEN_INSTALL_DIR}
        BUILD_BYPRODUCTS "${EIGEN_INSTALL_DIR}/include/eigen3"
43 44
        )
endif()
45 46 47 48 49

#----------------------------------------------------------------------------------------------------------

ExternalProject_Get_Property(eigen source_dir binary_dir)

50
set(EIGEN_INCLUDE_DIR "${EIGEN_INSTALL_DIR}/include/eigen3" PARENT_SCOPE)