From 642d452921c618a2905db5879c6cb0eba8a3cbf4 Mon Sep 17 00:00:00 2001 From: Zach Ploskey Date: Fri, 17 Jun 2011 15:46:50 -0700 Subject: [PATCH] Suggest placing Eigen directory in system include path. --- doc/C00_QuickStartGuide.dox | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/C00_QuickStartGuide.dox b/doc/C00_QuickStartGuide.dox index 62b7f6061..21b0af50d 100644 --- a/doc/C00_QuickStartGuide.dox +++ b/doc/C00_QuickStartGuide.dox @@ -25,6 +25,10 @@ There is no library to link to. The only thing that you need to keep in mind whe \code g++ -I /path/to/eigen/ my_program.cpp -o my_program \endcode +On Linux or Mac OS X, another option is to symlink or copy the Eigen folder into /usr/local/include/. This way, you can compile the program with: + +\code g++ my_program.cpp -o my_program \endcode + When you run the program, it produces the following output: \include QuickStart_example.out