diff options
author | Marius Kintel <marius@kintel.net> | 2011-12-19 18:42:13 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-12-19 18:42:13 (GMT) |
commit | 32a888c8739c345f6fda4e313635777f76784f0c (patch) | |
tree | da306d0bef29f8a8a334efb1fdb0be1d9af1e7be /openscad.pro | |
parent | bce7212b612315ac4c90edeaaf8c7ed04ba7720c (diff) | |
parent | c2d94835b0fab1455c2e9ac290abfa80e5a9b09b (diff) |
Merge branch 'master' of https://github.com/donbright/openscad into donbright-master
Diffstat (limited to 'openscad.pro')
-rw-r--r-- | openscad.pro | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/openscad.pro b/openscad.pro index e38251a..ac49807 100644 --- a/openscad.pro +++ b/openscad.pro @@ -8,6 +8,10 @@ # OPENCSGDIR # OPENSCAD_LIBRARIES # +# Please see the 'Buildling' sections of the OpenSCAD user manual +# for updated tips & workarounds. +# +# http://en.wikibooks.org/wiki/OpenSCAD_User_Manual isEmpty(QT_VERSION) { error("Please use qmake for Qt 4 (probably qmake-qt4)") @@ -82,6 +86,11 @@ linux*:exists(/usr/lib64/libGLU*)|linux*:exists(/usr/lib/libGLU*) { LIBS += -lGLU } +# See Dec 2011 OpenSCAD mailing list, re: CGAL/GCC bugs. +*g++* { + QMAKE_CXXFLAGS *= -fno-strict-aliasing +} + CONFIG(mingw-cross-env) { include(mingw-cross-env.pri) } |