diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-08-18 20:28:36 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-08-18 20:28:36 (GMT) |
commit | 9f6819e68501de16563aeaaadd65dfc915092169 (patch) | |
tree | 26beade954d4748b44ec303e2fd2e12584abe885 /openscad.pro | |
parent | 8740ac3574c5249c9c22f5436d3b14f4f0563a66 (diff) |
initial rework to enable eigen3 per issue #174.
1. enable eigen3 in qmake build system
2. convert Transform3d and cwise() per the eigen2->eigen3 porting faq online
3. get rid of 'using namespace boost::filesystem' as it conflicts with eigen3
Diffstat (limited to 'openscad.pro')
-rw-r--r-- | openscad.pro | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/openscad.pro b/openscad.pro index f11a494..a76383c 100644 --- a/openscad.pro +++ b/openscad.pro @@ -4,6 +4,7 @@ # BOOSTDIR # CGALDIR # EIGEN2DIR +# EIGEN3DIR # GLEWDIR # OPENCSGDIR # OPENSCAD_LIBRARIES @@ -123,7 +124,12 @@ macx:CONFIG += mdi CONFIG += cgal CONFIG += opencsg CONFIG += boost -CONFIG += eigen2 +#macx { +unix { + CONFIG += eigen3 +} else { + CONFIG += eigen2 +} #Uncomment the following line to enable QCodeEdit #CONFIG += qcodeedit |