source: GTP/trunk/Lib/Vis/Preprocessing/src/preprocessor.pro @ 1272

Revision 1272, 2.6 KB checked in by bittner, 18 years ago (diff)

mlrta configuration changes

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