Created
June 18, 2016 15:30
-
-
Save ClintLiddick/1be91a1195c22a12f8cbde8f0249624a to your computer and use it in GitHub Desktop.
CMake ExternalProject_Add file for the Eigen3 Library
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ExternalProject_Add( | |
eigen_ext | |
HG_REPOSITORY https://bitbucket.org/eigen/eigen | |
HG_TAG 3.2.8 | |
UPDATE_COMMAND "" | |
BUILD_COMMAND "" | |
INSTALL_COMMAND "" | |
LOG_DOWNLOAD ON | |
LOG_CONFIGURE ON) | |
ExternalProject_Get_Property(eigen_ext source_dir) | |
set(EIGEN3_INCLUDE_DIRS ${source_dir}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment