1 | #CONFIG -= qt
|
---|
2 | CONFIG += console warn_off thread release
|
---|
3 |
|
---|
4 | TEMPLATE = app
|
---|
5 |
|
---|
6 | TARGET = preprocessor
|
---|
7 |
|
---|
8 | CONFIG(debug) {
|
---|
9 | DESTDIR = "../bin/debug"
|
---|
10 | }
|
---|
11 |
|
---|
12 | CONFIG(release) {
|
---|
13 | DESTDIR = "../bin/release"
|
---|
14 | }
|
---|
15 |
|
---|
16 | NONGTP = ../../../../../../NonGTP
|
---|
17 |
|
---|
18 | #win32:INCLUDEPATH += c:/STLport-4.6.2/stlport
|
---|
19 |
|
---|
20 | CONFIG(qt) {
|
---|
21 | win32:INCLUDEPATH += "d:/Programs/NVIDIA Corporation/Cg/include"
|
---|
22 | }
|
---|
23 |
|
---|
24 | unix:INCLUDEPATH += ../support/src/xerces-c-src_2_7_0/include
|
---|
25 |
|
---|
26 | INCLUDEPATH += ../src $$NONGTP/Xerces/xerces/include $$NONGTP/Zlib/include $$NONGTP/Boost $$NONGTP/Devil/include
|
---|
27 |
|
---|
28 | win32:LIBPATH += GL $$NONGTP/Xerces/xerces/lib $$NONGTP/Devil/lib \
|
---|
29 | $$NONGTP/glut $$NONGTP/Boost/lib $$NONGTP/Zlib/lib
|
---|
30 |
|
---|
31 | CONFIG(qt) {
|
---|
32 | win32:LIBPATH += "d:/Programs/NVIDIA Corporation/Cg/lib"
|
---|
33 | }
|
---|
34 |
|
---|
35 | unix:LIBPATH += ../support/src/xerces-c-src_2_7_0/lib ../support/devil/lib /usr/lib/qt3/lib64
|
---|
36 |
|
---|
37 | #win32:LIBPATH += c:/STLport-4.6.2/lib
|
---|
38 |
|
---|
39 |
|
---|
40 | # RELEASE CONFIG
|
---|
41 | #CONFIG += windows warn_on thread release
|
---|
42 |
|
---|
43 | # DEPENDPATH = ../../include
|
---|
44 | CONFIG(qt) {
|
---|
45 | QT += opengl
|
---|
46 | }
|
---|
47 |
|
---|
48 | win32:LIBS += xerces-c_2.lib devil.lib ilu.lib ilut.lib \
|
---|
49 | glew32.lib zlib.lib
|
---|
50 |
|
---|
51 | QMAKE_LFLAGS_CONSOLE=/NODEFAULTLIB:LIBCMT
|
---|
52 |
|
---|
53 | CONFIG(qt) {
|
---|
54 | win32:LIBS += cg.lib cgGL.lib
|
---|
55 | }
|
---|
56 |
|
---|
57 | unix:LIBS += -lxerces-c -lIL -lILU -lILUT
|
---|
58 |
|
---|
59 | # Input
|
---|
60 | HEADERS += Halton.h VssRay.h VssPreprocessor.h RssTree.h GlRenderer.h \
|
---|
61 | PreprocessorThread.h Preprocessor.h Beam.h
|
---|
62 |
|
---|
63 |
|
---|
64 | SOURCES += \
|
---|
65 | Preprocessor.cpp SamplingPreprocessor.cpp ExactPreprocessor.cpp \
|
---|
66 | KdTree.cpp Environment.cpp gzstream.cpp common.cpp \
|
---|
67 | UnigraphicsParser.cpp X3dExporter.cpp SceneGraph.cpp Material.cpp \
|
---|
68 | Matrix4x4.cpp Vector3.cpp AxisAlignedBox3.cpp Ray.cpp main.cpp Mesh.cpp \
|
---|
69 | Exporter.cpp Camera.cpp X3dParser.cpp MeshKdTree.cpp Pvs.cpp \
|
---|
70 | MutualVisibility.cpp Triangle3.cpp Rectangle3.cpp Plane3.cpp Polygon3.cpp \
|
---|
71 | ViewCell.cpp ViewCellBsp.cpp Halton.cpp VssRay.cpp VssTree.cpp VssPreprocessor.cpp \
|
---|
72 | RenderSimulator.cpp RayInfo.cpp RssTree.cpp RssPreprocessor.cpp \
|
---|
73 | ViewCellsManager.cpp VspBspTree.cpp GlRenderer.cpp \
|
---|
74 | PreprocessorThread.cpp Renderer.cpp Beam.cpp ViewCellsParser.cpp Tetrahedron3.cpp \
|
---|
75 | VrmlExporter.cpp PlyParser.cpp plyfile.c RenderSampler.cpp \
|
---|
76 | GzBinFileInputStream.cpp GzFileInputSource.cpp \
|
---|
77 | LogManager.cpp \
|
---|
78 | SamplingStrategy.cpp KdIntersectable.cpp BoostPreprocessorThread.cpp \
|
---|
79 | OspTree.cpp HierarchyManager.cpp ObjParser.cpp VspTree.cpp BvHierarchy.cpp
|
---|
80 |
|
---|
81 |
|
---|
82 |
|
---|
83 | CONFIG(qt) {
|
---|
84 | SOURCES += OcclusionQuery.cpp
|
---|
85 | }
|
---|
86 |
|
---|
87 | #VspKdTree.cpp ResourceManager.cpp
|
---|