diff options
author | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-02-10 15:13:12 (GMT) |
---|---|---|
committer | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-02-10 15:13:12 (GMT) |
commit | 8038ee0406c05b1bc9c147e47a7ae8c02da6afbf (patch) | |
tree | 3cc3dca407633ab420aa96cbb7d9308b2d76e3b1 /openscad.pro | |
parent | c021720bfd2d45d35786b6d31d23402ec23df404 (diff) |
Moved progress display to status bar. Disabled by default but can be enabled in .pro file with CONFIG += progresswidget. Please test and enable as default if it looks good on all platforms.
git-svn-id: http://svn.clifford.at/openscad/trunk@432 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'openscad.pro')
-rw-r--r-- | openscad.pro | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/openscad.pro b/openscad.pro index 8ab9b31..8e2ac2c 100644 --- a/openscad.pro +++ b/openscad.pro @@ -34,12 +34,20 @@ QT += opengl macx:CONFIG += mdi CONFIG += cgal CONFIG += opencsg +#CONFIG += progresswidget mdi { # MDI needs an OpenCSG library that is compiled with OpenCSG-Reset-Hack.patch applied DEFINES += ENABLE_MDI } +progresswidget { + DEFINES += USE_PROGRESSWIDGET + FORMS += src/ProgressWidget.ui + HEADERS += src/ProgressWidget.h + SOURCES += src/ProgressWidget.cc +} + include(cgal.pri) include(opencsg.pri) |