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

Revision 1207, 2.2 KB checked in by bittner, 18 years ago (diff)

build without qt updates

Line 
1TEMPLATE = app
2
3TARGET = preprocessor
4
5NONGTP = ../../../../../../NonGTP
6
7#win32:INCLUDEPATH += c:/STLport-4.6.2/stlport
8win32:INCLUDEPATH += "d:/Programs/NVIDIA Corporation/Cg/include"
9unix:INCLUDEPATH += ../support/src/xerces-c-src_2_7_0/include
10
11INCLUDEPATH += ../src  $$NONGTP/Xerces/xerces/include  $$NONGTP/Zlib/include $$NONGTP/Boost $$NONGTP/Devil/include
12
13
14
15win32:LIBPATH += GL $$NONGTP/Xerces/xerces/lib $$NONGTP/Devil/lib \
16  $$NONGTP/glut $$NONGTP/Boost/lib
17
18CONFIG(qt) {
19win32:LIBPATH += "d:/Programs/NVIDIA Corporation/Cg/lib"
20
21}
22
23unix:LIBPATH += ../support/src/xerces-c-src_2_7_0/lib ../support/devil/lib /usr/lib/qt3/lib64
24
25#win32:LIBPATH += c:/STLport-4.6.2/lib
26
27# debuc config
28#CONFIG         += console warn_off thread release qt
29CONFIG          += console warn_off thread release
30
31# RELEASE CONFIG
32#CONFIG         += windows warn_on thread release
33
34# DEPENDPATH    = ../../include
35QT += opengl
36
37win32:LIBS += xerces-c_2.lib devil.lib ilu.lib ilut.lib boost_thread-vc71-mt-1_33_1.lib
38
39CONFIG(qt) {
40win32:LIBS += cg.lib cgGL.lib glew32.lib
41}
42
43unix:LIBS += -lxerces-c -lIL -lILU -lILUT
44
45# Input
46HEADERS += Halton.h VssRay.h VssPreprocessor.h RssTree.h GlRenderer.h \
47PreprocessorThread.h Preprocessor.h Beam.h
48
49
50SOURCES += \
51Preprocessor.cpp SamplingPreprocessor.cpp ExactPreprocessor.cpp \
52KdTree.cpp Environment.cpp gzstream.cpp common.cpp \
53UnigraphicsParser.cpp X3dExporter.cpp SceneGraph.cpp Material.cpp \
54Matrix4x4.cpp Vector3.cpp AxisAlignedBox3.cpp Ray.cpp main.cpp Mesh.cpp \
55Exporter.cpp Camera.cpp X3dParser.cpp MeshKdTree.cpp Pvs.cpp \
56MutualVisibility.cpp Triangle3.cpp Rectangle3.cpp Plane3.cpp Polygon3.cpp \
57ViewCell.cpp ViewCellBsp.cpp Halton.cpp VssRay.cpp VssTree.cpp VssPreprocessor.cpp \
58RenderSimulator.cpp RayInfo.cpp RssTree.cpp RssPreprocessor.cpp \
59ViewCellsManager.cpp VspBspTree.cpp GlRenderer.cpp \
60PreprocessorThread.cpp Renderer.cpp Beam.cpp ViewCellsParser.cpp Tetrahedron3.cpp \
61VrmlExporter.cpp PlyParser.cpp plyfile.c RenderSampler.cpp \
62GzBinFileInputStream.cpp  GzFileInputSource.cpp \
63OcclusionQuery.cpp VspOspTree.cpp LogManager.cpp \
64SamplingStrategy.cpp KdIntersectable.cpp BoostPreprocessorThread.cpp
65
66#VspKdTree.cpp ResourceManager.cpp
Note: See TracBrowser for help on using the repository browser.