Skip to content

Instantly share code, notes, and snippets.

@ClintLiddick
Created June 18, 2016 15:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ClintLiddick/1be91a1195c22a12f8cbde8f0249624a to your computer and use it in GitHub Desktop.
Save ClintLiddick/1be91a1195c22a12f8cbde8f0249624a to your computer and use it in GitHub Desktop.
CMake ExternalProject_Add file for the Eigen3 Library
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