diff options
-rw-r--r-- | eigen2.pri | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/eigen2.pri b/eigen2.pri new file mode 100644 index 0000000..8344f00 --- /dev/null +++ b/eigen2.pri @@ -0,0 +1,14 @@ +# Optionally specify location of Eigen2 using the +# EIGEN2DIR env. variable +EIGEN2_DIR = $$(EIGEN2DIR) +!isEmpty(EIGEN2_DIR) { + INCLUDEPATH += $$EIGEN2_DIR +} +else { + macx { + INCLUDEPATH += /opt/local/include/eigen2 + } + else { + INCLUDEPATH += /usr/include/eigen2 + } +} |