aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar Zach Ploskey <zploskey@uw.edu>2011-06-17 15:46:50 -0700
committerGravatar Zach Ploskey <zploskey@uw.edu>2011-06-17 15:46:50 -0700
commit642d452921c618a2905db5879c6cb0eba8a3cbf4 (patch)
treed4515e017a568d5a7aa4a3f876e1a9a5ed403690 /doc
parente3491beb488e1c1d8a4efc0f65a38e0fc1a75d1e (diff)
Suggest placing Eigen directory in system include path.
Diffstat (limited to 'doc')
-rw-r--r--doc/C00_QuickStartGuide.dox4
1 files changed, 4 insertions, 0 deletions
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