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

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