diff options
author | Marius Kintel <marius@kintel.net> | 2011-12-25 22:00:30 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-12-25 22:00:30 (GMT) |
commit | 7c48b345b12981085bf6741208893a8206d77578 (patch) | |
tree | dec80733c559903f6c463a3827e4bf2e2cea562e /openscad.pro | |
parent | 3e64e63b0113a99666ad68aa3e82bb7b80324d9b (diff) |
Perform CGAL evaluation in a separate thread. First steps towards better GUI responsiveness and parallelization
Diffstat (limited to 'openscad.pro')
-rw-r--r-- | openscad.pro | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/openscad.pro b/openscad.pro index 50a419d..594e890 100644 --- a/openscad.pro +++ b/openscad.pro @@ -249,7 +249,8 @@ HEADERS += src/cgal.h \ src/CGALCache.h \ src/PolySetCGALEvaluator.h \ src/CGALRenderer.h \ - src/CGAL_Nef_polyhedron.h + src/CGAL_Nef_polyhedron.h \ + src/cgalworker.h SOURCES += src/cgalutils.cc \ src/CGALEvaluator.cc \ @@ -258,7 +259,8 @@ SOURCES += src/cgalutils.cc \ src/CGALRenderer.cc \ src/CGAL_Nef_polyhedron.cc \ src/CGAL_Nef_polyhedron_DxfData.cc \ - src/cgaladv_minkowski2.cc + src/cgaladv_minkowski2.cc \ + src/cgalworker.cc } macx { |