blob: cf11f53856d5d9a9c08941505068d2a0c0e00699 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
WHAT IS IT?
===========
OpenSCAD (Open Solid CAD) is a tool for designing solid 3D objects using CSG
techniques. Basically OpenSCAD is a compiler that transforms descriptions of
3D objects written in a special computer language to 3D models.
FIXME: Add some more introduction..
PREREQUISITES
=============
To build OpenSCAD, you need some libraries and tools. The version numbers in
brakets specify the versions I have used for my tests. Other versions may or
may not work as well..
* Qt4 (4.5.1):
http://www.qtsoftware.com/
* CGAL (3.4):
http://www.cgal.org/
* boost (1.35, required by CGAL)
http://www.boost.org/
* cmake (2.6.2, required by CGAL)
http://www.cmake.org/
* OpenCSG (1.1.0):
http://www.opencsg.org/
* GLEW (bundled with OpenCSG)
http://glew.sourceforge.net/
* GCC C++ Compiler (4.3.1):
http://gcc.gnu.org/
* Bison (2.4):
http://www.gnu.org/software/bison/
* Flex (2.5.35):
http://flex.sourceforge.net/
LANGUAGE DESCRIPTION
====================
FIXME: This still needs to be written..
|