Lines Matching +full:cmake +full:-
5 \page TopicCMakeGuide Using %Eigen in CMake Projects
7 %Eigen provides native CMake support which allows the library to be easily
8 used in CMake projects.
10 \note %CMake 3.0 (or later) is required to enable this functionality.
12 %Eigen exports a CMake target called `Eigen3::Eigen` which can be imported
13 using the `find_package` CMake command and used by calling
15 \code{.cmake}
28 $ cmake path-to-example-directory
30 CMake will produce project files that generate an executable called `example`
31 which requires at least version 3.3 of %Eigen. Here, `path-to-example-directory`
35 …avorite one by setting the \c Eigen3_DIR cmake's variable to the respective path containing the \c…
37 cmake path-to-example-directory -DEigen3_DIR=$HOME/mypackages/share/eigen3/cmake/
42 \code{.cmake}