diff options
author | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-01-15 01:00:41 (GMT) |
---|---|---|
committer | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-01-15 01:00:41 (GMT) |
commit | f2bad69cf51c6e5b278bf38a2bd7eca2163aff9b (patch) | |
tree | db30b829f246fd8e0e1b9a261c43d2eb531a7ccb /openscad.pro | |
parent | 812e8064aa99abd168e45a7b14ec533bb30823b6 (diff) |
Started collecting GL colors in one place; added Preferences class which will become a preferences dialog, forked CGAL OGL_Helper to make colors configurable
git-svn-id: http://svn.clifford.at/openscad/trunk@301 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'openscad.pro')
-rw-r--r-- | openscad.pro | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/openscad.pro b/openscad.pro index 0216876..7e7ca16 100644 --- a/openscad.pro +++ b/openscad.pro @@ -1,6 +1,7 @@ isEmpty(VERSION) VERSION = $$system(date "+%Y.%m.%d") DEFINES += OPENSCAD_VERSION=$$VERSION TEMPLATE = app +RESOURCES = openscad.qrc macx { TARGET = OpenSCAD @@ -18,7 +19,7 @@ QT += opengl # Application configuration CONFIG += debug # CONFIG += release -# CONFIG += mdi +CONFIG += mdi CONFIG += cgal CONFIG += opencsg @@ -74,12 +75,15 @@ QMAKE_CXXFLAGS_DEBUG = -O0 -ggdb LEXSOURCES += lexer.l YACCSOURCES += parser.y -FORMS += MainWindow.ui +FORMS += MainWindow.ui \ + Preferences.ui HEADERS += openscad.h \ MainWindow.h \ + Preferences.h \ GLView.h \ - printutils.h + printutils.h \ + CGAL_renderer.h macx: HEADERS += EventFilter.h @@ -90,7 +94,8 @@ SOURCES += openscad.cc mainwin.cc glview.cc export.cc \ import.cc dxfdata.cc dxftess.cc dxftess-glu.cc \ dxftess-cgal.cc dxfdim.cc \ dxflinextrude.cc dxfrotextrude.cc highlighter.cc \ - printutils.cc nef2dxf.cc + printutils.cc nef2dxf.cc \ + Preferences.cc target.path = /usr/local/bin/ INSTALLS += target |