-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from corporateshark/master
Added Eigen header-only library
- Loading branch information
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Source: eigen3 | ||
Version: 3.2.9 | ||
Description: C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
include(vcpkg_common_functions) | ||
vcpkg_download_distfile(ARCHIVE | ||
URL "http://bitbucket.org/eigen/eigen/get/3.2.9.tar.bz2" | ||
FILENAME "eigen-3.2.9.tar.bz2" | ||
MD5 de11bfbfe2fd2dc4b32e8f416f58ee98 | ||
) | ||
vcpkg_extract_source_archive(${ARCHIVE}) | ||
|
||
# Put the licence file where vcpkg expects it | ||
file(RENAME ${CURRENT_BUILDTREES_DIR}/src/eigen-eigen-dc6cfdf9bcec ${CURRENT_BUILDTREES_DIR}/src/eigen) | ||
file(COPY ${CURRENT_BUILDTREES_DIR}/src/eigen/COPYING.README DESTINATION ${CURRENT_PACKAGES_DIR}/share/eigen3/COPYING.README) | ||
file(RENAME ${CURRENT_PACKAGES_DIR}/share/eigen3/COPYING.README ${CURRENT_PACKAGES_DIR}/share/eigen3/copyright) | ||
|
||
file(GLOB_RECURSE GARBAGE ${CURRENT_BUILDTREES_DIR}/src/eigen/Eigen/CMakeLists.*) | ||
file(REMOVE ${GARBAGE}) | ||
|
||
# Copy the eigen header files | ||
file(COPY ${CURRENT_BUILDTREES_DIR}/src/eigen/Eigen/ DESTINATION ${CURRENT_PACKAGES_DIR}/include/Eigen/) | ||
vcpkg_copy_pdbs() |