blob: 27eeb1a6fe1ca440a9997a8c1b01298ea98a4fa1 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
DEFINES += OPENSCAD_VERSION=test
TEMPLATE = app
OBJECTS_DIR = objects
MOC_DIR = objects
UI_DIR = objects
RCC_DIR = objects
INCLUDEPATH += ../src
DEFINES += REMOVE_DUMP REMOVE_RENDERCGAL
macx {
CONFIG -= app_bundle
LIBS += -framework Carbon
}
CONFIG += qt
QT += opengl
CONFIG += cgal
include(../cgal.pri)
include(../eigen2.pri)
# Standard include path for misc external libs
macx {
INCLUDEPATH += /opt/local/include
}
LEXSOURCES += ../src/lexer.l
YACCSOURCES += ../src/parser.y
HEADERS += ../src/builtin.h \
../src/cgal.h \
../src/context.h \
../src/csgterm.h \
../src/dxfdata.h \
../src/dxfdim.h \
../src/dxftess.h \
../src/export.h \
../src/expression.h \
../src/function.h \
../src/grid.h \
../src/module.h \
../src/node.h \
../src/dxflinextrudenode.h \
../src/dxfrotextrudenode.h \
../src/projectionnode.h \
../src/importnode.h \
../src/csgnode.h \
../src/transformnode.h \
../src/rendernode.h \
../src/openscad.h \
../src/polyset.h \
../src/printutils.h \
../src/value.h \
../src/progress.h \
../src/traverser.h \
../src/csgnode.h \
../src/visitor.h \
../src/nodedumper.h \
../src/CGALRenderer.h \
../src/nodecache.h \
../src/importnode.h \
../src/state.h \
../src/PolySetRenderer.h \
../src/PolySetCGALRenderer.h
SOURCES += cgaltest.cc \
../src/export.cc \
../src/value.cc \
../src/expr.cc \
../src/func.cc \
../src/module.cc \
../src/node.cc \
../src/context.cc \
../src/csgterm.cc \
../src/polyset.cc \
../src/csgops.cc \
../src/transform.cc \
../src/primitives.cc \
../src/projection.cc \
../src/cgaladv.cc \
../src/cgaladv_minkowski2.cc \
../src/cgaladv_minkowski3.cc \
../src/surface.cc \
../src/control.cc \
../src/render.cc \
../src/import.cc \
../src/dxfdata.cc \
../src/nef2dxf.cc \
../src/dxftess.cc \
../src/dxftess-glu.cc \
../src/dxftess-cgal.cc \
../src/dxfdim.cc \
../src/dxflinextrude.cc \
../src/dxfrotextrude.cc \
../src/printutils.cc \
../src/progress.cc \
../src/nodedumper.cc \
../src/CGALRenderer.cc \
../src/traverser.cc \
../src/PolySetRenderer.cc \
../src/PolySetCGALRenderer.cc
|