diff options
author | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-03-02 20:51:10 (GMT) |
---|---|---|
committer | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-03-02 20:51:10 (GMT) |
commit | 9655606f46af0a7678983fd0c3b424e5777fb48a (patch) | |
tree | cc99bc8a1d80ae3aab24ecce541171656248f3cf | |
parent | bd964ba98b87f634913d86052c5d504e3c4bc2d6 (diff) |
fixed default eigen2 include for mac
git-svn-id: http://svn.clifford.at/openscad/trunk@475 b57f626f-c46c-0410-a088-ec61d464b74c
-rw-r--r-- | test-code/dumptest.pro | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test-code/dumptest.pro b/test-code/dumptest.pro index 1e5a653..50d3a98 100644 --- a/test-code/dumptest.pro +++ b/test-code/dumptest.pro @@ -23,7 +23,12 @@ EIGEN2_DIR = $$(EIGEN2DIR) INCLUDEPATH += $$EIGEN2_DIR } else { - INCLUDEPATH += /usr/include/eigen2 + macx { + INCLUDEPATH += /opt/local/include/eigen2 + } + else { + INCLUDEPATH += /usr/include/eigen2 + } } LEXSOURCES += ../src/lexer.l |