diff options
author | don bright <hugh.m.bright@gmail.com> | 2011-10-15 20:48:41 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2011-10-15 20:48:41 (GMT) |
commit | 17ccbace5ff035c156bc49042eab7af2c584b6aa (patch) | |
tree | 95848e2fa1de19f1aeafdc14e523e66a8a358cc8 /openscad.pro | |
parent | 55f4a6150f4f8bc6fe5c3c17d3d38c73efefe9f2 (diff) |
improve documentation. move EIGEN_DONT_ALIGN to makefile. win32 build fixes.
Diffstat (limited to 'openscad.pro')
-rw-r--r-- | openscad.pro | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/openscad.pro b/openscad.pro index 89fa738..bacb122 100644 --- a/openscad.pro +++ b/openscad.pro @@ -9,11 +9,12 @@ } win32 { - QMAKE_LFLAGS += -VERBOSE +# for debugging link problems (use nmake -f Makefile.Release > log.txt) +# QMAKE_LFLAGS += -VERBOSE } win32 { - isEmpty(VERSION) VERSION = $$system(date /t) + isEmpty(VERSION) VERSION = "2011.10.15" } else { isEmpty(VERSION) VERSION = $$system(date "+%Y.%m.%d") } @@ -52,6 +53,8 @@ win32:QMAKE_CXXFLAGS += -wd4800 #disable warning about CGAL's unreferenced formal parameters win32:QMAKE_CXXFLAGS += -wd4100 +win32:QMAKE_CXXFLAGS += -DEIGEN_DONT_ALIGN + TEMPLATE = app RESOURCES = openscad.qrc |