1 | TEMPLATE = app
|
---|
2 |
|
---|
3 | TARGET = preprocessor
|
---|
4 |
|
---|
5 | #win32:INCLUDEPATH += c:/STLport-4.6.2/stlport
|
---|
6 | win32:INCLUDEPATH += "d:/Programs/NVIDIA Corporation/Cg/include"
|
---|
7 |
|
---|
8 | unix:INCLUDEPATH += ../support/src/xerces-c-src_2_7_0/include
|
---|
9 |
|
---|
10 | INCLUDEPATH += ../src ../support/xerces/include ../support/zlib/include ../support/boost ../support/devil/include
|
---|
11 |
|
---|
12 |
|
---|
13 | win32:LIBPATH += ../support/xerces/lib ../support/devil/lib "d:/Programs/NVIDIA Corporation/Cg/lib"
|
---|
14 | unix:LIBPATH += ../support/src/xerces-c-src_2_7_0/lib ../support/devil/lib /usr/lib/qt3/lib64
|
---|
15 |
|
---|
16 | #win32:LIBPATH += c:/STLport-4.6.2/lib
|
---|
17 |
|
---|
18 | # debuc config
|
---|
19 | CONFIG += console warn_off thread release qt
|
---|
20 |
|
---|
21 | # RELEASE CONFIG
|
---|
22 | #CONFIG += windows warn_on thread release
|
---|
23 |
|
---|
24 | # DEPENDPATH = ../../include
|
---|
25 |
|
---|
26 | QT += opengl
|
---|
27 |
|
---|
28 | win32:LIBS += xerces-c_2.lib devil.lib ilu.lib ilut.lib cg.lib cgGL.lib
|
---|
29 | unix:LIBS += -lxerces-c -lIL -lILU -lILUT
|
---|
30 |
|
---|
31 | # Input
|
---|
32 | HEADERS += Halton.h VssRay.h VssPreprocessor.h RssTree.h GlRenderer.h \
|
---|
33 | PreprocessorThread.h Preprocessor.h Beam.h
|
---|
34 |
|
---|
35 |
|
---|
36 | SOURCES += \
|
---|
37 | Preprocessor.cpp SamplingPreprocessor.cpp ExactPreprocessor.cpp \
|
---|
38 | KdTree.cpp Environment.cpp gzstream.cpp common.cpp \
|
---|
39 | UnigraphicsParser.cpp X3dExporter.cpp SceneGraph.cpp Material.cpp \
|
---|
40 | Matrix4x4.cpp Vector3.cpp AxisAlignedBox3.cpp Ray.cpp main.cpp Mesh.cpp \
|
---|
41 | Exporter.cpp Camera.cpp X3dParser.cpp MeshKdTree.cpp Pvs.cpp \
|
---|
42 | MutualVisibility.cpp Triangle3.cpp Rectangle3.cpp Plane3.cpp Polygon3.cpp \
|
---|
43 | ViewCell.cpp ViewCellBsp.cpp Halton.cpp VssRay.cpp VssTree.cpp VssPreprocessor.cpp \
|
---|
44 | RenderSimulator.cpp VspKdTree.cpp RayInfo.cpp RssTree.cpp RssPreprocessor.cpp \
|
---|
45 | ViewCellsManager.cpp VspBspTree.cpp GlRenderer.cpp \
|
---|
46 | PreprocessorThread.cpp Renderer.cpp Beam.cpp ViewCellsParser.cpp Tetrahedron3.cpp
|
---|
47 |
|
---|