Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r55830 - in sandbox/ggl/other: . comparisons comparisons/cgal comparisons/common comparisons/geos comparisons/ggl comparisons/gpc comparisons/gpc/gpc comparisons/gtl comparisons/terralib comparisons/terralib/src comparisons/terralib/src/terralib comparisons/wykobi comparisons/wykobi/wykobi
From: barend.gehrels_at_[hidden]
Date: 2009-08-28 04:51:44


Author: barendgehrels
Date: 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
New Revision: 55830
URL: http://svn.boost.org/trac/boost/changeset/55830

Log:
Added geometry library performance comparison suite
Added:
   sandbox/ggl/other/
   sandbox/ggl/other/comparisons/
   sandbox/ggl/other/comparisons/Makefile (contents, props changed)
   sandbox/ggl/other/comparisons/cgal/
   sandbox/ggl/other/comparisons/cgal/Makefile (contents, props changed)
   sandbox/ggl/other/comparisons/cgal/cgal_check2005.vcproj (contents, props changed)
   sandbox/ggl/other/comparisons/cgal/readme.txt (contents, props changed)
   sandbox/ggl/other/comparisons/common/
   sandbox/ggl/other/comparisons/geos/
   sandbox/ggl/other/comparisons/geos/Makefile (contents, props changed)
   sandbox/ggl/other/comparisons/geos/geos_check.vcproj (contents, props changed)
   sandbox/ggl/other/comparisons/geos/geos_check2005.vcproj (contents, props changed)
   sandbox/ggl/other/comparisons/geos/readme.txt (contents, props changed)
   sandbox/ggl/other/comparisons/ggl/
   sandbox/ggl/other/comparisons/ggl/Makefile (contents, props changed)
   sandbox/ggl/other/comparisons/ggl/ggl_check2005.vcproj (contents, props changed)
   sandbox/ggl/other/comparisons/ggl/ggl_check2008.vcproj (contents, props changed)
   sandbox/ggl/other/comparisons/ggl/ggl_simplify_2005.vcproj (contents, props changed)
   sandbox/ggl/other/comparisons/gpc/
   sandbox/ggl/other/comparisons/gpc/Makefile (contents, props changed)
   sandbox/ggl/other/comparisons/gpc/gpc/
   sandbox/ggl/other/comparisons/gpc/gpc_check2005.vcproj (contents, props changed)
   sandbox/ggl/other/comparisons/gpc/readme.txt (contents, props changed)
   sandbox/ggl/other/comparisons/gtl/
   sandbox/ggl/other/comparisons/gtl/Makefile (contents, props changed)
   sandbox/ggl/other/comparisons/gtl/gtl_check2005.vcproj (contents, props changed)
   sandbox/ggl/other/comparisons/gtl/gtl_check2008.vcproj (contents, props changed)
   sandbox/ggl/other/comparisons/readme.txt (contents, props changed)
   sandbox/ggl/other/comparisons/speed_comparisons2005.sln (contents, props changed)
   sandbox/ggl/other/comparisons/speed_comparisons2008.sln (contents, props changed)
   sandbox/ggl/other/comparisons/terralib/
   sandbox/ggl/other/comparisons/terralib/Makefile (contents, props changed)
   sandbox/ggl/other/comparisons/terralib/readme.txt (contents, props changed)
   sandbox/ggl/other/comparisons/terralib/src/
   sandbox/ggl/other/comparisons/terralib/src/terralib/
   sandbox/ggl/other/comparisons/terralib/terralib_check2005.vcproj (contents, props changed)
   sandbox/ggl/other/comparisons/wykobi/
   sandbox/ggl/other/comparisons/wykobi/Makefile (contents, props changed)
   sandbox/ggl/other/comparisons/wykobi/readme.txt (contents, props changed)
   sandbox/ggl/other/comparisons/wykobi/wykobi/
   sandbox/ggl/other/comparisons/wykobi/wykobi/Makefile (contents, props changed)
   sandbox/ggl/other/comparisons/wykobi/wykobi_check.vcproj (contents, props changed)
   sandbox/ggl/other/comparisons/wykobi/wykobi_check2005.vcproj (contents, props changed)

Added: sandbox/ggl/other/comparisons/Makefile
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/Makefile 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,8 @@
+all:
+ cd cgal; $(MAKE)
+ cd geos; $(MAKE)
+ cd gpc; $(MAKE)
+ cd ggl; $(MAKE)
+ cd gtl; $(MAKE)
+ cd terralib; $(MAKE)
+ cd wykobi; $(MAKE)

Added: sandbox/ggl/other/comparisons/cgal/Makefile
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/cgal/Makefile 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,56 @@
+# Modify these paths for other locations
+CGAL = ../../../../../CGAL-3.4
+SRC = $(CGAL)/src
+SRC_SHP = ../common/shapelib-1.2.10
+
+LIB_LOCAL = /usr/local/lib
+LIB_BOOST = /home/barend/boost_1_39_0/stage/lib
+BOOST_LIB = libboost_thread-gcc43-mt-1_39
+
+INC = $(CGAL)/include
+
+CXX = gcc -O3 -w
+CXXFLAGS = -I$(INC) -I$(SRC_SHP) -I../common -I../../../../../boost_1_39_0/
+
+CGAL_CXXFLAGS = -I$(INC)
+
+DEP = ../common/common.hpp ../common/read_shapefile.hpp
+RELEASE = ../release
+
+
+
+
+all: $(RELEASE)/cgal_check
+
+OBJS = shpopen.o dbfopen.o cgal_check.o
+
+# MP_Float.o assertions.o
+
+
+# for LINUX on home-pc Barend:
+$(RELEASE)/cgal_check: $(OBJS)
+ $(CXX) $(CXXFLAGS) $(OBJS) -o $(RELEASE)/cgal_check -rdynamic -L$(LIB_LOCAL) -L$(LIB_BOOST) \
+ $(LIB_LOCAL)/libCGAL_Core.so $(LIB_LOCAL)/libCGAL.so $(LIB_LOCAL)/libmpfr.so $(LIB_LOCAL)/libgmp.so \
+ $(LIB_BOOST)/$(BOOST_LIB).so \
+ $(LIB_LOCAL)/libCGAL_Core.so $(LIB_LOCAL)/libCGAL.so $(LIB_LOCAL)/libmpfr.so $(LIB_LOCAL)/libgmp.so \
+ $(LIB_BOOST)/$(BOOST_LIB).so \
+ -Wl,-rpath,$(LIB_LOCAL):$(LIB_BOOST)
+
+
+cgal_check.o: cgal_check.cpp $(DEP)
+ $(CXX) -c $(CXXFLAGS) cgal_check.cpp
+
+shpopen.o: $(SRC_SHP)/shpopen.c
+ $(CXX) -c $(CXXFLAGS) $(SRC_SHP)/shpopen.c
+
+dbfopen.o: $(SRC_SHP)/dbfopen.c
+ $(CXX) -c $(CXXFLAGS) $(SRC_SHP)/dbfopen.c
+
+
+# For Windows/MinGW the two files below are enough (to compile WITHOUT intersection-test)
+MP_Float.o: $(SRC)/CGAL/MP_Float.cpp
+ $(CXX) -c $(CGAL_CXXFLAGS) $(SRC)/CGAL/MP_Float.cpp
+
+assertions.o: $(SRC)/CGAL/assertions.cpp
+ $(CXX) -c $(CGAL_CXXFLAGS) $(SRC)/CGAL/assertions.cpp
+

Added: sandbox/ggl/other/comparisons/cgal/cgal_check2005.vcproj
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/cgal/cgal_check2005.vcproj 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,211 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="8.00"
+ Name="cgal_check"
+ ProjectGUID="{361C0D3F-7A01-4E40-B750-81F344EE577C}"
+ RootNamespace="cgal_check"
+ Keyword="Win32Proj"
+ >
+ <Platforms>
+ <Platform
+ Name="Win32"
+ />
+ </Platforms>
+ <ToolFiles>
+ </ToolFiles>
+ <Configurations>
+ <Configuration
+ Name="Debug|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)\cgal"
+ ConfigurationType="1"
+ CharacterSet="1"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=".;&quot;C:\MinGW\msys\home\barend\CGAL-3.4\include&quot;;&quot;../common/shapelib-1.2.10&quot;"
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;CGAL_NO_AUTOLINK_CGAL;BOOST_ALL_NO_LIB"
+ RuntimeLibrary="3"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ Detect64BitPortabilityProblems="true"
+ DebugInformationFormat="3"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="kernel32.lib $(NoInherit)"
+ OutputFile="$(OutDir)\2005\$(ProjectName).exe"
+ GenerateDebugInformation="true"
+ SubSystem="1"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ <Configuration
+ Name="Release|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)\cgal\2005"
+ ConfigurationType="1"
+ CharacterSet="1"
+ WholeProgramOptimization="0"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ InlineFunctionExpansion="2"
+ EnableIntrinsicFunctions="true"
+ FavorSizeOrSpeed="1"
+ WholeProgramOptimization="false"
+ AdditionalIncludeDirectories=".;&quot;C:\MinGW\msys\home\barend\CGAL-3.4\include&quot;;&quot;../common/shapelib-1.2.10&quot;"
+ PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;NOMINMAX;WIN32_LEAN_AND_MEAN;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_DEPRECATE;_SECURE_SCL=0;_HAS_ITERATOR_DEBUGGING=0;BOOST_DISABLE_ASSERTS;BOOST_ALL_NO_LIB;CGAL_NO_AUTOLINK_CGAL"
+ RuntimeLibrary="0"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ Detect64BitPortabilityProblems="true"
+ DebugInformationFormat="3"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="kernel32.lib $(NoInherit)"
+ OutputFile="$(OutDir)\2005\$(ProjectName).exe"
+ GenerateManifest="false"
+ SubSystem="1"
+ OptimizeReferences="2"
+ EnableCOMDATFolding="2"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <Filter
+ Name="Source Files"
+ Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+ >
+ <File
+ RelativePath=".\cgal_check.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\common\shapelib-1.2.10\dbfopen.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\common\shapelib-1.2.10\shpopen.cpp"
+ >
+ </File>
+ <Filter
+ Name="CGAL"
+ >
+ <File
+ RelativePath="..\..\..\..\..\..\..\..\..\..\MinGW\msys\home\barend\CGAL-3.4\src\CGAL\assertions.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\..\..\..\..\..\..\..\..\..\MinGW\msys\home\barend\CGAL-3.4\src\CGAL\MP_Float.cpp"
+ >
+ </File>
+ </Filter>
+ </Filter>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>

Added: sandbox/ggl/other/comparisons/cgal/readme.txt
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/cgal/readme.txt 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1 @@
+Download cgal from http://www.cgal.org and put it somewhere (the makefile expects it somewhere at CGAL-3.4)

Added: sandbox/ggl/other/comparisons/geos/Makefile
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/geos/Makefile 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,871 @@
+# Modify these paths for other locations
+SRC = .
+#SRC = /c/svn/geolib/trunk/src/cpp/library/gl/other/comparisons/geos
+SRC_GEOS = ../../../../../geos-3.1.0/source
+SRC_SHP = $(SRC)/../common/shapelib-1.2.10
+
+
+CXX = gcc -O3 -w
+CXXFLAGS = -I$(SRC_GEOS)/headers -I$(SRC_SHP) -I../common -I../../../../../boost_1_39_0
+
+GEOS_CXXFLAGS = -I$(SRC_GEOS)/headers
+
+DEP = $(SRC)/../common/common.hpp $(SRC)/../common/read_shapefile.hpp
+RELEASE = ../release
+
+
+all: $(RELEASE)/geos_check
+
+SHP_OBJS = shpopen.o dbfopen.o
+
+OBJS = inlines.o \
+ AbstractNode.o \
+ AbstractSTRtree.o \
+ Assert.o \
+ Bintree.o \
+ BufferBuilder.o \
+ BufferOp.o \
+ BufferSubgraph.o \
+ ByteOrderDataInStream.o \
+ ByteOrderValues.o \
+ CentroidArea.o \
+ CentroidLine.o \
+ CentroidPoint.o \
+ CGAlgorithms.o \
+ CommonBits.o \
+ CommonBitsOp.o \
+ CommonBitsRemover.o \
+ ConnectedElementLocationFilter.o \
+ ConnectedElementPointFilter.o \
+ ConnectedInteriorTester.o \
+ ConnectedSubgraphFinder.o \
+ ConsistentAreaTester.o \
+ ConvexHull.o \
+ Coordinate.o \
+ CoordinateArraySequence.o \
+ CoordinateArraySequenceFactory.o \
+ CoordinateOperation.o \
+ CoordinateSequence.o \
+ Depth.o \
+ Dimension.o \
+ DirectedEdge.o DirectedEdge2.o \
+ DirectedEdgeStar.o DirectedEdgeStar2.o \
+ DistanceOp.o \
+ DoubleBits.o \
+ DouglasPeuckerLineSimplifier.o \
+ DouglasPeuckerSimplifier.o \
+ Edge.o Edge2.o \
+ EdgeEnd.o \
+ EdgeEndBuilder.o \
+ EdgeEndBundle.o \
+ EdgeEndBundleStar.o \
+ EdgeEndStar.o \
+ EdgeIntersection.o \
+ EdgeIntersectionList.o \
+ EdgeList.o \
+ EdgeNodingValidator.o \
+ EdgeRing.o EdgeRing2.o \
+ EdgeSetNoder.o \
+ EdgeString.o \
+ ElevationMatrix.o \
+ ElevationMatrixCell.o \
+ EnhancedPrecisionOp.o \
+ Envelope.o \
+ FastNodingValidator.o \
+ FuzzyPointLocator.o \
+ GeometricShapeFactory.o \
+ Geometry.o \
+ GeometryCollection.o \
+ GeometryComponentFilter.o \
+ GeometryEditor.o \
+ GeometryFactory.o \
+ GeometryGraph.o \
+ GeometryGraphOperation.o \
+ GeometryLocation.o \
+ GeometrySnapper.o \
+ GeometryTransformer.o \
+ GraphComponent.o \
+ HCoordinate.o \
+ HotPixel.o \
+ InteriorPointArea.o \
+ InteriorPointLine.o \
+ InteriorPointPoint.o \
+ IntersectionAdder.o \
+ IntersectionFinderAdder.o \
+ IntersectionMatrix.o \
+ Interval.o Interval2.o \
+ IntervalSize.o \
+ IsSimpleOp.o \
+ IsValidOp.o \
+ ItemBoundable.o \
+ IteratedNoder.o \
+ Key.o Key2.o \
+ Label.o \
+ LinearRing.o \
+ LineBuilder.o \
+ LineIntersector.o \
+ LineMergeDirectedEdge.o \
+ LineMergeEdge.o \
+ LineMergeGraph.o \
+ LineMerger.o \
+ LineSegment.o \
+ LineSegmentIndex.o \
+ LineSequencer.o \
+ LineString.o \
+ LineStringSnapper.o \
+ Location.o \
+ math.o \
+ MaximalEdgeRing.o \
+ MCIndexNoder.o \
+ MCIndexPointSnapper.o \
+ MCIndexSnapRounder.o \
+ MCPointInRing.o \
+ MinimalEdgeRing.o \
+ MinimumDiameter.o \
+ MonotoneChain.o \
+ MonotoneChainBuilder.o \
+ MonotoneChainEdge.o \
+ MonotoneChainIndexer.o \
+ MonotoneChainOverlapAction.o \
+ MonotoneChainSelectAction.o \
+ MultiLineString.o \
+ MultiPoint.o \
+ MultiPolygon.o \
+ Node.o Node1.o Node2.o Node3.o \
+ NodeBase.o NodeBase2.o \
+ NodeFactory.o \
+ NodeMap.o NodeMap2.o \
+ NodingValidator.o \
+ NotRepresentableException.o \
+ Octant.o \
+ OffsetCurveBuilder.o \
+ OffsetCurveSetBuilder.o \
+ OffsetPointGenerator.o \
+ OverlayNodeFactory.o \
+ OverlayOp.o \
+ OverlayResultValidator.o \
+ ParseException.o \
+ PlanarGraph.o PlanarGraph2.o \
+ Point.o \
+ PointBuilder.o \
+ PointLocator.o \
+ Polygon.o \
+ PolygonBuilder.o \
+ PolygonizeDirectedEdge.o \
+ PolygonizeEdge.o \
+ PolygonizeGraph.o \
+ Polygonizer.o \
+ Position.o \
+ PrecisionModel.o \
+ Profiler.o \
+ Quadrant.o \
+ Quadtree.o \
+ QuadtreeNestedRingTester.o \
+ RectangleContains.o \
+ RectangleIntersects.o \
+ RelateComputer.o \
+ RelateNode.o \
+ RelateNodeFactory.o \
+ RelateNodeGraph.o \
+ RelateOp.o \
+ RepeatedPointTester.o \
+ RightmostEdgeFinder.o \
+ RobustDeterminant.o \
+ Root.o Root2.o \
+ ScaledNoder.o \
+ SegmentIntersectionTester.o \
+ SegmentIntersector.o \
+ SegmentNode.o \
+ SegmentNodeList.o \
+ SegmentString.o \
+ ShortCircuitedGeometryVisitor.o \
+ SimpleEdgeSetIntersector.o \
+ SimpleGeometryPrecisionReducer.o \
+ SimpleMCSweepLineIntersector.o \
+ SimpleNestedRingTester.o \
+ SimpleNoder.o \
+ SimplePointInAreaLocator.o \
+ SimplePointInRing.o \
+ SimpleSnapRounder.o \
+ SimpleSweepLineIntersector.o \
+ SingleInteriorIntersectionFinder.o \
+ SIRtree.o \
+ SIRtreePointInRing.o \
+ StringTokenizer.o \
+ STRtree.o \
+ Subgraph.o \
+ SubgraphDepthLocater.o \
+ SweepLineEvent.o SweepLineEvent2.o \
+ SweepLineIndex.o \
+ SweepLineInterval.o \
+ SweeplineNestedRingTester.o \
+ SweepLineSegment.o \
+ TaggedLineSegment.o \
+ TaggedLinesSimplifier.o \
+ TaggedLineString.o \
+ TaggedLineStringSimplifier.o \
+ TopologyLocation.o \
+ TopologyPreservingSimplifier.o \
+ TopologyValidationError.o \
+ Triangle.o \
+ Unload.o \
+ WKBReader.o \
+ WKBWriter.o \
+ WKTReader.o \
+ WKTWriter.o \
+ Writer.o
+
+
+
+
+$(RELEASE)/geos_check: $(OBJS) $(SHP_OBJS) geos_check.o
+ $(CXX) $(CXXFLAGS) $(OBJS) $(SHP_OBJS) geos_check.o -o $(RELEASE)/geos_check -lstdc++
+
+$(RELEASE)/geos_within_problem: $(OBJS) geos_within_problem.o
+ $(CXX) $(CXXFLAGS) $(OBJS) geos_within_problem.o -o $(RELEASE)/geos_within_problem -lstdc++
+
+
+shpopen.o: $(SRC_SHP)/shpopen.c
+ $(CXX) -c $(CXXFLAGS) $(SRC_SHP)/shpopen.c
+
+geos_within_problem.o: geos_within_problem.cpp
+ $(CXX) -c $(CXXFLAGS) geos_within_problem.cpp
+
+geos_check.o: $(SRC)/geos_check.cpp $(DEP)
+ $(CXX) -c $(CXXFLAGS) $(SRC)/geos_check.cpp
+
+dbfopen.o: $(SRC_SHP)/dbfopen.c
+ $(CXX) -c $(CXXFLAGS) $(SRC_SHP)/dbfopen.c
+
+
+inlines.o: $(SRC_GEOS)/inlines.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/inlines.cpp
+
+DirectedEdge.o: $(SRC_GEOS)/planargraph/DirectedEdge.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/planargraph/DirectedEdge.cpp
+
+DirectedEdgeStar.o: $(SRC_GEOS)/planargraph/DirectedEdgeStar.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/planargraph/DirectedEdgeStar.cpp
+
+Edge.o: $(SRC_GEOS)/planargraph/Edge.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/planargraph/Edge.cpp
+
+Node.o: $(SRC_GEOS)/planargraph/Node.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/planargraph/Node.cpp
+
+NodeMap.o: $(SRC_GEOS)/planargraph/NodeMap.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/planargraph/NodeMap.cpp
+
+PlanarGraph.o: $(SRC_GEOS)/planargraph/PlanarGraph.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/planargraph/PlanarGraph.cpp
+
+Subgraph.o: $(SRC_GEOS)/planargraph/Subgraph.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/planargraph/Subgraph.cpp
+
+DoubleBits.o: $(SRC_GEOS)/index/quadtree/DoubleBits.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/quadtree/DoubleBits.cpp
+
+IntervalSize.o: $(SRC_GEOS)/index/quadtree/IntervalSize.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/quadtree/IntervalSize.cpp
+
+Key.o: $(SRC_GEOS)/index/quadtree/Key.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/quadtree/Key.cpp
+
+Node1.o: $(SRC_GEOS)/index/quadtree/Node.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/quadtree/Node.cpp -o Node1.o
+
+NodeBase.o: $(SRC_GEOS)/index/quadtree/NodeBase.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/quadtree/NodeBase.cpp
+
+Quadtree.o: $(SRC_GEOS)/index/quadtree/Quadtree.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/quadtree/Quadtree.cpp
+
+QuadtreeNestedRingTester.o: $(SRC_GEOS)/operation/valid/QuadtreeNestedRingTester.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/valid/QuadtreeNestedRingTester.cpp
+
+Root.o: $(SRC_GEOS)/index/quadtree/Root.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/quadtree/Root.cpp
+
+Bintree.o: $(SRC_GEOS)/index/bintree/Bintree.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/bintree/Bintree.cpp
+
+Interval.o: $(SRC_GEOS)/index/bintree/Interval.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/bintree/Interval.cpp
+
+Key2.o: $(SRC_GEOS)/index/bintree/Key.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/bintree/Key.cpp -o Key2.o
+
+Node2.o: $(SRC_GEOS)/index/bintree/Node.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/bintree/Node.cpp -o Node2.o
+
+NodeBase2.o: $(SRC_GEOS)/index/bintree/NodeBase.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/bintree/NodeBase.cpp -o NodeBase2.o
+
+Root2.o: $(SRC_GEOS)/index/bintree/Root.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/bintree/Root.cpp -o Root2.o
+
+MonotoneChain.o: $(SRC_GEOS)/index/chain/MonotoneChain.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/chain/MonotoneChain.cpp
+
+MonotoneChainBuilder.o: $(SRC_GEOS)/index/chain/MonotoneChainBuilder.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/chain/MonotoneChainBuilder.cpp
+
+MonotoneChainOverlapAction.o: $(SRC_GEOS)/index/chain/MonotoneChainOverlapAction.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/chain/MonotoneChainOverlapAction.cpp
+
+MonotoneChainSelectAction.o: $(SRC_GEOS)/index/chain/MonotoneChainSelectAction.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/chain/MonotoneChainSelectAction.cpp
+
+AbstractNode.o: $(SRC_GEOS)/index/strtree/AbstractNode.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/strtree/AbstractNode.cpp
+
+AbstractSTRtree.o: $(SRC_GEOS)/index/strtree/AbstractSTRtree.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/strtree/AbstractSTRtree.cpp
+
+Interval2.o: $(SRC_GEOS)/index/strtree/Interval.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/strtree/Interval.cpp -o Interval2.o
+
+ItemBoundable.o: $(SRC_GEOS)/index/strtree/ItemBoundable.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/strtree/ItemBoundable.cpp
+
+SIRtree.o: $(SRC_GEOS)/index/strtree/SIRtree.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/strtree/SIRtree.cpp
+
+STRtree.o: $(SRC_GEOS)/index/strtree/STRtree.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/strtree/STRtree.cpp
+
+SweepLineEvent.o: $(SRC_GEOS)/index/sweepline/SweepLineEvent.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/sweepline/SweepLineEvent.cpp
+
+SweepLineIndex.o: $(SRC_GEOS)/index/sweepline/SweepLineIndex.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/sweepline/SweepLineIndex.cpp
+
+SweepLineInterval.o: $(SRC_GEOS)/index/sweepline/SweepLineInterval.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/index/sweepline/SweepLineInterval.cpp
+
+CentroidArea.o: $(SRC_GEOS)/algorithm/CentroidArea.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/algorithm/CentroidArea.cpp
+
+CentroidLine.o: $(SRC_GEOS)/algorithm/CentroidLine.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/algorithm/CentroidLine.cpp
+
+CentroidPoint.o: $(SRC_GEOS)/algorithm/CentroidPoint.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/algorithm/CentroidPoint.cpp
+
+CGAlgorithms.o: $(SRC_GEOS)/algorithm/CGAlgorithms.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/algorithm/CGAlgorithms.cpp
+
+ConvexHull.o: $(SRC_GEOS)/algorithm/ConvexHull.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/algorithm/ConvexHull.cpp
+
+HCoordinate.o: $(SRC_GEOS)/algorithm/HCoordinate.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/algorithm/HCoordinate.cpp
+
+InteriorPointArea.o: $(SRC_GEOS)/algorithm/InteriorPointArea.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/algorithm/InteriorPointArea.cpp
+
+InteriorPointLine.o: $(SRC_GEOS)/algorithm/InteriorPointLine.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/algorithm/InteriorPointLine.cpp
+
+InteriorPointPoint.o: $(SRC_GEOS)/algorithm/InteriorPointPoint.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/algorithm/InteriorPointPoint.cpp
+
+LineIntersector.o: $(SRC_GEOS)/algorithm/LineIntersector.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/algorithm/LineIntersector.cpp
+
+MCPointInRing.o: $(SRC_GEOS)/algorithm/MCPointInRing.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/algorithm/MCPointInRing.cpp
+
+MinimumDiameter.o: $(SRC_GEOS)/algorithm/MinimumDiameter.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/algorithm/MinimumDiameter.cpp
+
+NotRepresentableException.o: $(SRC_GEOS)/algorithm/NotRepresentableException.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/algorithm/NotRepresentableException.cpp
+
+PointLocator.o: $(SRC_GEOS)/algorithm/PointLocator.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/algorithm/PointLocator.cpp
+
+RobustDeterminant.o: $(SRC_GEOS)/algorithm/RobustDeterminant.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/algorithm/RobustDeterminant.cpp
+
+SimplePointInAreaLocator.o: $(SRC_GEOS)/algorithm/locate/SimplePointInAreaLocator.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/algorithm/locate/SimplePointInAreaLocator.cpp
+
+SimplePointInRing.o: $(SRC_GEOS)/algorithm/SimplePointInRing.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/algorithm/SimplePointInRing.cpp
+
+SIRtreePointInRing.o: $(SRC_GEOS)/algorithm/SIRtreePointInRing.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/algorithm/SIRtreePointInRing.cpp
+
+Coordinate.o: $(SRC_GEOS)/geom/Coordinate.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/Coordinate.cpp
+
+CoordinateArraySequence.o: $(SRC_GEOS)/geom/CoordinateArraySequence.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/CoordinateArraySequence.cpp
+
+CoordinateArraySequenceFactory.o: $(SRC_GEOS)/geom/CoordinateArraySequenceFactory.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/CoordinateArraySequenceFactory.cpp
+
+CoordinateOperation.o: $(SRC_GEOS)/geom/util/CoordinateOperation.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/util/CoordinateOperation.cpp
+
+CoordinateSequence.o: $(SRC_GEOS)/geom/CoordinateSequence.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/CoordinateSequence.cpp
+
+Dimension.o: $(SRC_GEOS)/geom/Dimension.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/Dimension.cpp
+
+Envelope.o: $(SRC_GEOS)/geom/Envelope.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/Envelope.cpp
+
+Geometry.o: $(SRC_GEOS)/geom/Geometry.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/Geometry.cpp
+
+GeometryCollection.o: $(SRC_GEOS)/geom/GeometryCollection.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/GeometryCollection.cpp
+
+GeometryComponentFilter.o: $(SRC_GEOS)/geom/GeometryComponentFilter.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/GeometryComponentFilter.cpp
+
+GeometryEditor.o: $(SRC_GEOS)/geom/util/GeometryEditor.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/util/GeometryEditor.cpp
+
+GeometryFactory.o: $(SRC_GEOS)/geom/GeometryFactory.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/GeometryFactory.cpp
+
+GeometryTransformer.o: $(SRC_GEOS)/geom/util/GeometryTransformer.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/util/GeometryTransformer.cpp
+
+IntersectionMatrix.o: $(SRC_GEOS)/geom/IntersectionMatrix.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/IntersectionMatrix.cpp
+
+LinearRing.o: $(SRC_GEOS)/geom/LinearRing.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/LinearRing.cpp
+
+LineSegment.o: $(SRC_GEOS)/geom/LineSegment.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/LineSegment.cpp
+
+LineString.o: $(SRC_GEOS)/geom/LineString.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/LineString.cpp
+
+Location.o: $(SRC_GEOS)/geom/Location.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/Location.cpp
+
+MultiLineString.o: $(SRC_GEOS)/geom/MultiLineString.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/MultiLineString.cpp
+
+MultiPoint.o: $(SRC_GEOS)/geom/MultiPoint.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/MultiPoint.cpp
+
+MultiPolygon.o: $(SRC_GEOS)/geom/MultiPolygon.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/MultiPolygon.cpp
+
+Point.o: $(SRC_GEOS)/geom/Point.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/Point.cpp
+
+Polygon.o: $(SRC_GEOS)/geom/Polygon.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/Polygon.cpp
+
+PrecisionModel.o: $(SRC_GEOS)/geom/PrecisionModel.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/PrecisionModel.cpp
+
+ShortCircuitedGeometryVisitor.o: $(SRC_GEOS)/geom/util/ShortCircuitedGeometryVisitor.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/util/ShortCircuitedGeometryVisitor.cpp
+
+Triangle.o: $(SRC_GEOS)/geom/Triangle.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geom/Triangle.cpp
+
+ByteOrderDataInStream.o: $(SRC_GEOS)/io/ByteOrderDataInStream.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/io/ByteOrderDataInStream.cpp
+
+ByteOrderValues.o: $(SRC_GEOS)/io/ByteOrderValues.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/io/ByteOrderValues.cpp
+
+ParseException.o: $(SRC_GEOS)/io/ParseException.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/io/ParseException.cpp
+
+StringTokenizer.o: $(SRC_GEOS)/io/StringTokenizer.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/io/StringTokenizer.cpp
+
+Unload.o: $(SRC_GEOS)/io/Unload.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/io/Unload.cpp
+
+WKBReader.o: $(SRC_GEOS)/io/WKBReader.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/io/WKBReader.cpp
+
+WKBWriter.o: $(SRC_GEOS)/io/WKBWriter.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/io/WKBWriter.cpp
+
+WKTReader.o: $(SRC_GEOS)/io/WKTReader.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/io/WKTReader.cpp
+
+WKTWriter.o: $(SRC_GEOS)/io/WKTWriter.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/io/WKTWriter.cpp
+
+Writer.o: $(SRC_GEOS)/io/Writer.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/io/Writer.cpp
+
+FastNodingValidator.o: $(SRC_GEOS)/noding/FastNodingValidator.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/noding/FastNodingValidator.cpp
+
+HotPixel.o: $(SRC_GEOS)/noding/snapround/HotPixel.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/noding/snapround/HotPixel.cpp
+
+IntersectionAdder.o: $(SRC_GEOS)/noding/IntersectionAdder.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/noding/IntersectionAdder.cpp
+
+IntersectionFinderAdder.o: $(SRC_GEOS)/noding/IntersectionFinderAdder.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/noding/IntersectionFinderAdder.cpp
+
+IteratedNoder.o: $(SRC_GEOS)/noding/IteratedNoder.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/noding/IteratedNoder.cpp
+
+MCIndexNoder.o: $(SRC_GEOS)/noding/MCIndexNoder.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/noding/MCIndexNoder.cpp
+
+MCIndexPointSnapper.o: $(SRC_GEOS)/noding/snapround/MCIndexPointSnapper.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/noding/snapround/MCIndexPointSnapper.cpp
+
+MCIndexSnapRounder.o: $(SRC_GEOS)/noding/snapround/MCIndexSnapRounder.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/noding/snapround/MCIndexSnapRounder.cpp
+
+NodingValidator.o: $(SRC_GEOS)/noding/NodingValidator.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/noding/NodingValidator.cpp
+
+Octant.o: $(SRC_GEOS)/noding/Octant.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/noding/Octant.cpp
+
+ScaledNoder.o: $(SRC_GEOS)/noding/ScaledNoder.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/noding/ScaledNoder.cpp
+
+SegmentNode.o: $(SRC_GEOS)/noding/SegmentNode.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/noding/SegmentNode.cpp
+
+SegmentNodeList.o: $(SRC_GEOS)/noding/SegmentNodeList.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/noding/SegmentNodeList.cpp
+
+SegmentString.o: $(SRC_GEOS)/noding/SegmentString.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/noding/SegmentString.cpp
+
+SimpleNoder.o: $(SRC_GEOS)/noding/SimpleNoder.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/noding/SimpleNoder.cpp
+
+SimpleSnapRounder.o: $(SRC_GEOS)/noding/snapround/SimpleSnapRounder.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/noding/snapround/SimpleSnapRounder.cpp
+
+SingleInteriorIntersectionFinder.o: $(SRC_GEOS)/noding/SingleInteriorIntersectionFinder.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/noding/SingleInteriorIntersectionFinder.cpp
+
+BufferBuilder.o: $(SRC_GEOS)/operation/buffer/BufferBuilder.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/buffer/BufferBuilder.cpp
+
+BufferOp.o: $(SRC_GEOS)/operation/buffer/BufferOp.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/buffer/BufferOp.cpp
+
+BufferSubgraph.o: $(SRC_GEOS)/operation/buffer/BufferSubgraph.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/buffer/BufferSubgraph.cpp
+
+ConnectedElementLocationFilter.o: $(SRC_GEOS)/operation/distance/ConnectedElementLocationFilter.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/distance/ConnectedElementLocationFilter.cpp
+
+ConnectedElementPointFilter.o: $(SRC_GEOS)/operation/distance/ConnectedElementPointFilter.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/distance/ConnectedElementPointFilter.cpp
+
+ConnectedInteriorTester.o: $(SRC_GEOS)/operation/valid/ConnectedInteriorTester.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/valid/ConnectedInteriorTester.cpp
+
+ConsistentAreaTester.o: $(SRC_GEOS)/operation/valid/ConsistentAreaTester.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/valid/ConsistentAreaTester.cpp
+
+DistanceOp.o: $(SRC_GEOS)/operation/distance/DistanceOp.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/distance/DistanceOp.cpp
+
+EdgeEndBuilder.o: $(SRC_GEOS)/operation/relate/EdgeEndBuilder.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/relate/EdgeEndBuilder.cpp
+
+EdgeEndBundle.o: $(SRC_GEOS)/operation/relate/EdgeEndBundle.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/relate/EdgeEndBundle.cpp
+
+EdgeEndBundleStar.o: $(SRC_GEOS)/operation/relate/EdgeEndBundleStar.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/relate/EdgeEndBundleStar.cpp
+
+EdgeRing.o: $(SRC_GEOS)/operation/polygonize/EdgeRing.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/polygonize/EdgeRing.cpp
+
+EdgeSetNoder.o: $(SRC_GEOS)/operation/overlay/EdgeSetNoder.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/overlay/EdgeSetNoder.cpp
+
+EdgeString.o: $(SRC_GEOS)/operation/linemerge/EdgeString.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/linemerge/EdgeString.cpp
+
+ElevationMatrix.o: $(SRC_GEOS)/operation/overlay/ElevationMatrix.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/overlay/ElevationMatrix.cpp
+
+ElevationMatrixCell.o: $(SRC_GEOS)/operation/overlay/ElevationMatrixCell.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/overlay/ElevationMatrixCell.cpp
+
+FuzzyPointLocator.o: $(SRC_GEOS)/operation/overlay/FuzzyPointLocator.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/overlay/FuzzyPointLocator.cpp
+
+GeometryGraphOperation.o: $(SRC_GEOS)/operation/GeometryGraphOperation.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/GeometryGraphOperation.cpp
+
+GeometryLocation.o: $(SRC_GEOS)/operation/distance/GeometryLocation.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/distance/GeometryLocation.cpp
+
+IsSimpleOp.o: $(SRC_GEOS)/operation/IsSimpleOp.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/IsSimpleOp.cpp
+
+IsValidOp.o: $(SRC_GEOS)/operation/valid/IsValidOp.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/valid/IsValidOp.cpp
+
+LineBuilder.o: $(SRC_GEOS)/operation/overlay/LineBuilder.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/overlay/LineBuilder.cpp
+
+LineMergeDirectedEdge.o: $(SRC_GEOS)/operation/linemerge/LineMergeDirectedEdge.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/linemerge/LineMergeDirectedEdge.cpp
+
+LineMergeEdge.o: $(SRC_GEOS)/operation/linemerge/LineMergeEdge.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/linemerge/LineMergeEdge.cpp
+
+LineMergeGraph.o: $(SRC_GEOS)/operation/linemerge/LineMergeGraph.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/linemerge/LineMergeGraph.cpp
+
+LineMerger.o: $(SRC_GEOS)/operation/linemerge/LineMerger.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/linemerge/LineMerger.cpp
+
+LineSequencer.o: $(SRC_GEOS)/operation/linemerge/LineSequencer.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/linemerge/LineSequencer.cpp
+
+MaximalEdgeRing.o: $(SRC_GEOS)/operation/overlay/MaximalEdgeRing.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/overlay/MaximalEdgeRing.cpp
+
+MinimalEdgeRing.o: $(SRC_GEOS)/operation/overlay/MinimalEdgeRing.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/overlay/MinimalEdgeRing.cpp
+
+OffsetCurveBuilder.o: $(SRC_GEOS)/operation/buffer/OffsetCurveBuilder.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/buffer/OffsetCurveBuilder.cpp
+
+OffsetCurveSetBuilder.o: $(SRC_GEOS)/operation/buffer/OffsetCurveSetBuilder.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/buffer/OffsetCurveSetBuilder.cpp
+
+OffsetPointGenerator.o: $(SRC_GEOS)/operation/overlay/OffsetPointGenerator.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/overlay/OffsetPointGenerator.cpp
+
+OverlayNodeFactory.o: $(SRC_GEOS)/operation/overlay/OverlayNodeFactory.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/overlay/OverlayNodeFactory.cpp
+
+OverlayOp.o: $(SRC_GEOS)/operation/overlay/OverlayOp.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/overlay/OverlayOp.cpp
+
+OverlayResultValidator.o: $(SRC_GEOS)/operation/overlay/OverlayResultValidator.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/overlay/OverlayResultValidator.cpp
+
+PointBuilder.o: $(SRC_GEOS)/operation/overlay/PointBuilder.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/overlay/PointBuilder.cpp
+
+PolygonBuilder.o: $(SRC_GEOS)/operation/overlay/PolygonBuilder.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/overlay/PolygonBuilder.cpp
+
+PolygonizeDirectedEdge.o: $(SRC_GEOS)/operation/polygonize/PolygonizeDirectedEdge.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/polygonize/PolygonizeDirectedEdge.cpp
+
+PolygonizeEdge.o: $(SRC_GEOS)/operation/polygonize/PolygonizeEdge.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/polygonize/PolygonizeEdge.cpp
+
+PolygonizeGraph.o: $(SRC_GEOS)/operation/polygonize/PolygonizeGraph.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/polygonize/PolygonizeGraph.cpp
+
+Polygonizer.o: $(SRC_GEOS)/operation/polygonize/Polygonizer.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/polygonize/Polygonizer.cpp
+
+RectangleContains.o: $(SRC_GEOS)/operation/predicate/RectangleContains.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/predicate/RectangleContains.cpp
+
+RectangleIntersects.o: $(SRC_GEOS)/operation/predicate/RectangleIntersects.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/predicate/RectangleIntersects.cpp
+
+RelateComputer.o: $(SRC_GEOS)/operation/relate/RelateComputer.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/relate/RelateComputer.cpp
+
+RelateNode.o: $(SRC_GEOS)/operation/relate/RelateNode.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/relate/RelateNode.cpp
+
+RelateNodeFactory.o: $(SRC_GEOS)/operation/relate/RelateNodeFactory.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/relate/RelateNodeFactory.cpp
+
+RelateNodeGraph.o: $(SRC_GEOS)/operation/relate/RelateNodeGraph.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/relate/RelateNodeGraph.cpp
+
+RelateOp.o: $(SRC_GEOS)/operation/relate/RelateOp.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/relate/RelateOp.cpp
+
+RepeatedPointTester.o: $(SRC_GEOS)/operation/valid/RepeatedPointTester.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/valid/RepeatedPointTester.cpp
+
+RightmostEdgeFinder.o: $(SRC_GEOS)/operation/buffer/RightmostEdgeFinder.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/buffer/RightmostEdgeFinder.cpp
+
+SegmentIntersectionTester.o: $(SRC_GEOS)/operation/predicate/SegmentIntersectionTester.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/predicate/SegmentIntersectionTester.cpp
+
+SimpleNestedRingTester.o: $(SRC_GEOS)/operation/valid/SimpleNestedRingTester.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/valid/SimpleNestedRingTester.cpp
+
+SubgraphDepthLocater.o: $(SRC_GEOS)/operation/buffer/SubgraphDepthLocater.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/buffer/SubgraphDepthLocater.cpp
+
+SweeplineNestedRingTester.o: $(SRC_GEOS)/operation/valid/SweeplineNestedRingTester.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/valid/SweeplineNestedRingTester.cpp
+
+TopologyValidationError.o: $(SRC_GEOS)/operation/valid/TopologyValidationError.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/operation/valid/TopologyValidationError.cpp
+
+CommonBits.o: $(SRC_GEOS)/precision/CommonBits.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/precision/CommonBits.cpp
+
+CommonBitsOp.o: $(SRC_GEOS)/precision/CommonBitsOp.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/precision/CommonBitsOp.cpp
+
+CommonBitsRemover.o: $(SRC_GEOS)/precision/CommonBitsRemover.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/precision/CommonBitsRemover.cpp
+
+EnhancedPrecisionOp.o: $(SRC_GEOS)/precision/EnhancedPrecisionOp.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/precision/EnhancedPrecisionOp.cpp
+
+GeometrySnapper.o: $(SRC_GEOS)/precision/GeometrySnapper.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/precision/GeometrySnapper.cpp
+
+LineStringSnapper.o: $(SRC_GEOS)/precision/LineStringSnapper.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/precision/LineStringSnapper.cpp
+
+SimpleGeometryPrecisionReducer.o: $(SRC_GEOS)/precision/SimpleGeometryPrecisionReducer.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/precision/SimpleGeometryPrecisionReducer.cpp
+
+DouglasPeuckerLineSimplifier.o: $(SRC_GEOS)/simplify/DouglasPeuckerLineSimplifier.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/simplify/DouglasPeuckerLineSimplifier.cpp
+
+DouglasPeuckerSimplifier.o: $(SRC_GEOS)/simplify/DouglasPeuckerSimplifier.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/simplify/DouglasPeuckerSimplifier.cpp
+
+LineSegmentIndex.o: $(SRC_GEOS)/simplify/LineSegmentIndex.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/simplify/LineSegmentIndex.cpp
+
+TaggedLineSegment.o: $(SRC_GEOS)/simplify/TaggedLineSegment.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/simplify/TaggedLineSegment.cpp
+
+TaggedLinesSimplifier.o: $(SRC_GEOS)/simplify/TaggedLinesSimplifier.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/simplify/TaggedLinesSimplifier.cpp
+
+TaggedLineString.o: $(SRC_GEOS)/simplify/TaggedLineString.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/simplify/TaggedLineString.cpp
+
+TaggedLineStringSimplifier.o: $(SRC_GEOS)/simplify/TaggedLineStringSimplifier.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/simplify/TaggedLineStringSimplifier.cpp
+
+TopologyPreservingSimplifier.o: $(SRC_GEOS)/simplify/TopologyPreservingSimplifier.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/simplify/TopologyPreservingSimplifier.cpp
+
+Assert.o: $(SRC_GEOS)/util/Assert.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/util/Assert.cpp
+
+ConnectedSubgraphFinder.o: $(SRC_GEOS)/planargraph/algorithm/ConnectedSubgraphFinder.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/planargraph/algorithm/ConnectedSubgraphFinder.cpp
+
+GeometricShapeFactory.o: $(SRC_GEOS)/util/GeometricShapeFactory.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/util/GeometricShapeFactory.cpp
+
+math.o: $(SRC_GEOS)/util/math.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/util/math.cpp
+
+Profiler.o: $(SRC_GEOS)/util/Profiler.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/util/Profiler.cpp
+
+Depth.o: $(SRC_GEOS)/geomgraph/Depth.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/Depth.cpp
+
+DirectedEdge2.o: $(SRC_GEOS)/geomgraph/DirectedEdge.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/DirectedEdge.cpp -o DirectedEdge2.o
+
+DirectedEdgeStar2.o: $(SRC_GEOS)/geomgraph/DirectedEdgeStar.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/DirectedEdgeStar.cpp -o DirectedEdgeStar2.o
+
+Edge2.o: $(SRC_GEOS)/geomgraph/Edge.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/Edge.cpp -o Edge2.o
+
+EdgeEnd.o: $(SRC_GEOS)/geomgraph/EdgeEnd.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/EdgeEnd.cpp
+
+EdgeEndStar.o: $(SRC_GEOS)/geomgraph/EdgeEndStar.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/EdgeEndStar.cpp
+
+EdgeIntersection.o: $(SRC_GEOS)/geomgraph/EdgeIntersection.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/EdgeIntersection.cpp
+
+EdgeIntersectionList.o: $(SRC_GEOS)/geomgraph/EdgeIntersectionList.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/EdgeIntersectionList.cpp
+
+EdgeList.o: $(SRC_GEOS)/geomgraph/EdgeList.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/EdgeList.cpp
+
+EdgeNodingValidator.o: $(SRC_GEOS)/geomgraph/EdgeNodingValidator.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/EdgeNodingValidator.cpp
+
+EdgeRing2.o: $(SRC_GEOS)/geomgraph/EdgeRing.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/EdgeRing.cpp -o EdgeRing2.o
+
+GeometryGraph.o: $(SRC_GEOS)/geomgraph/GeometryGraph.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/GeometryGraph.cpp
+
+GraphComponent.o: $(SRC_GEOS)/geomgraph/GraphComponent.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/GraphComponent.cpp
+
+Label.o: $(SRC_GEOS)/geomgraph/Label.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/Label.cpp
+
+MonotoneChainEdge.o: $(SRC_GEOS)/geomgraph/index/MonotoneChainEdge.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/index/MonotoneChainEdge.cpp
+
+MonotoneChainIndexer.o: $(SRC_GEOS)/geomgraph/index/MonotoneChainIndexer.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/index/MonotoneChainIndexer.cpp
+
+Node3.o: $(SRC_GEOS)/geomgraph/Node.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/Node.cpp -o Node3.o
+
+NodeFactory.o: $(SRC_GEOS)/geomgraph/NodeFactory.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/NodeFactory.cpp
+
+NodeMap2.o: $(SRC_GEOS)/geomgraph/NodeMap.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/NodeMap.cpp -o NodeMap2.o
+
+PlanarGraph2.o: $(SRC_GEOS)/geomgraph/PlanarGraph.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/PlanarGraph.cpp -o PlanarGraph2.o
+
+Position.o: $(SRC_GEOS)/geomgraph/Position.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/Position.cpp
+
+Quadrant.o: $(SRC_GEOS)/geomgraph/Quadrant.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/Quadrant.cpp
+
+SegmentIntersector.o: $(SRC_GEOS)/geomgraph/index/SegmentIntersector.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/index/SegmentIntersector.cpp
+
+SimpleEdgeSetIntersector.o: $(SRC_GEOS)/geomgraph/index/SimpleEdgeSetIntersector.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/index/SimpleEdgeSetIntersector.cpp
+
+SimpleMCSweepLineIntersector.o: $(SRC_GEOS)/geomgraph/index/SimpleMCSweepLineIntersector.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/index/SimpleMCSweepLineIntersector.cpp
+
+SimpleSweepLineIntersector.o: $(SRC_GEOS)/geomgraph/index/SimpleSweepLineIntersector.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/index/SimpleSweepLineIntersector.cpp
+
+SweepLineEvent2.o: $(SRC_GEOS)/geomgraph/index/SweepLineEvent.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/index/SweepLineEvent.cpp -o SweepLineEvent2.o
+
+SweepLineSegment.o: $(SRC_GEOS)/geomgraph/index/SweepLineSegment.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/index/SweepLineSegment.cpp
+
+TopologyLocation.o: $(SRC_GEOS)/geomgraph/TopologyLocation.cpp
+ $(CXX) -c $(GEOS_CXXFLAGS) $(SRC_GEOS)/geomgraph/TopologyLocation.cpp
+
+

Added: sandbox/ggl/other/comparisons/geos/geos_check.vcproj
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/geos/geos_check.vcproj 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,1383 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="9.00"
+ Name="geos_check"
+ ProjectGUID="{3CB75146-EAFF-4ECB-8540-61FBCAAA702E}"
+ RootNamespace="geos_check"
+ Keyword="Win32Proj"
+ TargetFrameworkVersion="131072"
+ >
+ <Platforms>
+ <Platform
+ Name="Win32"
+ />
+ </Platforms>
+ <ToolFiles>
+ </ToolFiles>
+ <Configurations>
+ <Configuration
+ Name="Debug|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)\geos_check"
+ ConfigurationType="1"
+ CharacterSet="1"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=".;&quot;./geos-3.0.3/source/headers&quot;;&quot;../common/shapelib-1.2.10&quot;"
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;NOMINMAX;WIN32_LEAN_AND_MEAN;NOGDI;_CRT_SECURE_NO_DEPRECATE"
+ MinimalRebuild="true"
+ BasicRuntimeChecks="3"
+ RuntimeLibrary="3"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ DebugInformationFormat="4"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="kernel32.lib $(NoInherit)"
+ LinkIncremental="2"
+ GenerateDebugInformation="true"
+ SubSystem="1"
+ RandomizedBaseAddress="1"
+ DataExecutionPrevention="0"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ <Configuration
+ Name="Release|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)\geos_check\2008"
+ ConfigurationType="1"
+ CharacterSet="1"
+ WholeProgramOptimization="1"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ InlineFunctionExpansion="2"
+ EnableIntrinsicFunctions="true"
+ FavorSizeOrSpeed="1"
+ WholeProgramOptimization="true"
+ AdditionalIncludeDirectories=".;&quot;./geos-3.0.3/source/headers&quot;;&quot;../common/shapelib-1.2.10&quot;"
+ PreprocessorDefinitions="NOGDI;WIN32;NDEBUG;_CONSOLE;NOMINMAX;WIN32_LEAN_AND_MEAN;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_DEPRECATE;_SECURE_SCL=0;_HAS_ITERATOR_DEBUGGING=0;BOOST_DISABLE_ASSERTS;BOOST_ALL_NO_LIB"
+ RuntimeLibrary="0"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ DebugInformationFormat="3"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="kernel32.lib $(NoInherit)"
+ OutputFile="$(OutDir)\2008\$(ProjectName).exe"
+ LinkIncremental="1"
+ GenerateDebugInformation="false"
+ SubSystem="1"
+ OptimizeReferences="2"
+ EnableCOMDATFolding="2"
+ RandomizedBaseAddress="1"
+ DataExecutionPrevention="0"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <Filter
+ Name="Source Files"
+ Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+ >
+ <File
+ RelativePath=".\geos_check.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Lib Files"
+ >
+ <File
+ RelativePath=".\geos-3.0.3\source\inlines.cpp"
+ >
+ </File>
+ <Filter
+ Name="PlanarGraph"
+ >
+ <File
+ RelativePath=".\geos-3.0.3\source\planargraph\DirectedEdge.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\DirectedEdge_2.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\DirectedEdge_2.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\planargraph\DirectedEdgeStar.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\DirectedEdgeStar_2.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\DirectedEdgeStar_2.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\planargraph\Edge.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Edge_2.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Edge_2.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\planargraph\Node.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Node_3.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Node_3.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\planargraph\NodeMap.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\NodeMap_2.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\NodeMap_2.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\planargraph\PlanarGraph.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\PlanarGraph_2.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\PlanarGraph_2.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\planargraph\SubGraph.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\SubGraph_2.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\SubGraph_2.obj"
+ />
+ </FileConfiguration>
+ </File>
+ </Filter>
+ <Filter
+ Name="Index"
+ >
+ <Filter
+ Name="QuadTree"
+ >
+ <File
+ RelativePath=".\geos-3.0.3\source\index\quadtree\DoubleBits.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\index\quadtree\IntervalSize.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\index\quadtree\Key.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Key_q.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Key_q.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\index\quadtree\Node.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Node_q.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Node_q.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\index\quadtree\NodeBase.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\NodeBase_1.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\NodeBase_1.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\index\quadtree\Quadtree.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\valid\QuadtreeNestedRingTester.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\index\quadtree\Root.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Root_q.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Root_q.obj"
+ />
+ </FileConfiguration>
+ </File>
+ </Filter>
+ <Filter
+ Name="BinTree"
+ >
+ <File
+ RelativePath=".\geos-3.0.3\source\index\bintree\Bintree.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\index\bintree\Interval.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\index\bintree\Key.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\index\bintree\Node.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Node_b.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Node_b.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\index\bintree\NodeBase.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\NodeBase_2.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\NodeBase_2.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\index\bintree\Root.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Chain"
+ >
+ <File
+ RelativePath=".\geos-3.0.3\source\index\chain\MonotoneChain.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\index\chain\MonotoneChainBuilder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\index\chain\MonotoneChainOverlapAction.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\index\chain\MonotoneChainSelectAction.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="StrTree"
+ >
+ <File
+ RelativePath=".\geos-3.0.3\source\index\strtree\AbstractNode.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\index\strtree\AbstractSTRtree.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\index\strtree\Interval.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Inverval_2.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Inverval_2.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\index\strtree\ItemBoundable.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\index\strtree\SIRtree.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\index\strtree\STRtree.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="SweepLine"
+ >
+ <File
+ RelativePath=".\geos-3.0.3\source\index\sweepline\SweepLineEvent.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\SweepLineEvent_2.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\SweepLineEvent_2.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\index\sweepline\SweepLineIndex.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\index\sweepline\SweepLineInterval.cpp"
+ >
+ </File>
+ </Filter>
+ </Filter>
+ <Filter
+ Name="Algorithm"
+ >
+ <File
+ RelativePath=".\geos-3.0.3\source\algorithm\CentroidArea.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\algorithm\CentroidLine.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\algorithm\CentroidPoint.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\algorithm\CGAlgorithms.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\algorithm\ConvexHull.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\algorithm\HCoordinate.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\algorithm\InteriorPointArea.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\algorithm\InteriorPointLine.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\algorithm\InteriorPointPoint.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\algorithm\LineIntersector.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\algorithm\MCPointInRing.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\algorithm\MinimumDiameter.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\algorithm\NotRepresentableException.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\algorithm\PointLocator.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\algorithm\RobustDeterminant.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\algorithm\SimplePointInAreaLocator.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\algorithm\SimplePointInRing.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\algorithm\SIRtreePointInRing.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Geom"
+ >
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\Coordinate.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\CoordinateArraySequence.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\CoordinateArraySequenceFactory.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\util\CoordinateOperation.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\CoordinateSequence.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\Dimension.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\Envelope.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\Geometry.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\GeometryCollection.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\GeometryComponentFilter.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\util\GeometryEditor.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\GeometryFactory.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\util\GeometryTransformer.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\IntersectionMatrix.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\LinearRing.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\LineSegment.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\LineString.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\Location.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\MultiLineString.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\MultiPoint.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\MultiPolygon.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\Point.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\Polygon.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\PrecisionModel.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\util\ShortCircuitedGeometryVisitor.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geom\Triangle.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="IO"
+ >
+ <File
+ RelativePath=".\geos-3.0.3\source\io\ByteOrderDataInStream.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\io\ByteOrderValues.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\io\ParseException.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\io\StringTokenizer.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\io\Unload.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\io\WKBReader.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\io\WKBWriter.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\io\WKTReader.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\io\WKTWriter.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\io\Writer.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Noding"
+ >
+ <File
+ RelativePath=".\geos-3.0.3\source\noding\FastNodingValidator.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\noding\snapround\HotPixel.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\noding\IntersectionAdder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\noding\IntersectionFinderAdder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\noding\IteratedNoder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\noding\MCIndexNoder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\noding\snapround\MCIndexPointSnapper.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\noding\snapround\MCIndexSnapRounder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\noding\NodingValidator.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\noding\Octant.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\noding\ScaledNoder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\noding\SegmentNode.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\noding\SegmentNodeList.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\noding\SegmentString.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\noding\SimpleNoder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\noding\snapround\SimpleSnapRounder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\noding\SingleInteriorIntersectionFinder.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Operation"
+ >
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\buffer\BufferBuilder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\buffer\BufferOp.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\buffer\BufferSubgraph.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\distance\ConnectedElementLocationFilter.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\distance\ConnectedElementPointFilter.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\valid\ConnectedInteriorTester.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\valid\ConsistentAreaTester.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\distance\DistanceOp.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\relate\EdgeEndBuilder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\relate\EdgeEndBundle.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\relate\EdgeEndBundleStar.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\polygonize\EdgeRing.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\EdgeRing_2.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\EdgeRing_2.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\overlay\EdgeSetNoder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\linemerge\EdgeString.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\overlay\ElevationMatrix.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\overlay\ElevationMatrixCell.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\overlay\FuzzyPointLocator.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\GeometryGraphOperation.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\distance\GeometryLocation.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\IsSimpleOp.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\valid\IsValidOp.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\overlay\LineBuilder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\linemerge\LineMergeDirectedEdge.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\linemerge\LineMergeEdge.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\linemerge\LineMergeGraph.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\linemerge\LineMerger.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\linemerge\LineSequencer.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\overlay\MaximalEdgeRing.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\overlay\MinimalEdgeRing.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\buffer\OffsetCurveBuilder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\buffer\OffsetCurveSetBuilder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\overlay\OffsetPointGenerator.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\overlay\OverlayNodeFactory.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\overlay\OverlayOp.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\overlay\OverlayResultValidator.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\overlay\PointBuilder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\overlay\PolygonBuilder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\polygonize\PolygonizeDirectedEdge.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\polygonize\PolygonizeEdge.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\polygonize\PolygonizeGraph.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\polygonize\Polygonizer.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\predicate\RectangleContains.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\predicate\RectangleIntersects.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\relate\RelateComputer.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\relate\RelateNode.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\relate\RelateNodeFactory.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\relate\RelateNodeGraph.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\relate\RelateOp.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\valid\RepeatedPointTester.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\buffer\RightmostEdgeFinder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\predicate\SegmentIntersectionTester.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\valid\SimpleNestedRingTester.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\buffer\SubgraphDepthLocater.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\valid\SweeplineNestedRingTester.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\operation\valid\TopologyValidationError.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Precision"
+ >
+ <File
+ RelativePath=".\geos-3.0.3\source\precision\CommonBits.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\precision\CommonBitsOp.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\precision\CommonBitsRemover.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\precision\EnhancedPrecisionOp.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\precision\GeometrySnapper.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\precision\LineStringSnapper.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\precision\SimpleGeometryPrecisionReducer.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Simplify"
+ >
+ <File
+ RelativePath=".\geos-3.0.3\source\simplify\DouglasPeuckerLineSimplifier.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\simplify\DouglasPeuckerSimplifier.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\simplify\LineSegmentIndex.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\simplify\TaggedLineSegment.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\simplify\TaggedLinesSimplifier.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\simplify\TaggedLineString.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\simplify\TaggedLineStringSimplifier.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\simplify\TopologyPreservingSimplifier.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Util"
+ >
+ <File
+ RelativePath=".\geos-3.0.3\source\util\Assert.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\planargraph\algorithm\ConnectedSubgraphFinder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\util\GeometricShapeFactory.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\util\math.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\util\Profiler.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="GeomGraph"
+ >
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\Depth.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\DirectedEdge.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\DirectedEdgeStar.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\Edge.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\EdgeEnd.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\EdgeEndStar.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\EdgeIntersection.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\EdgeIntersectionList.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\EdgeList.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\EdgeNodingValidator.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\EdgeRing.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\GeometryGraph.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\GraphComponent.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\Label.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\index\MonotoneChainEdge.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\index\MonotoneChainIndexer.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\Node.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Node_2.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Node_2.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\NodeFactory.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\NodeMap.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\PlanarGraph.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\Position.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\Quadrant.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\index\SegmentIntersector.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\index\SimpleEdgeSetIntersector.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\index\SimpleMCSweepLineIntersector.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\index\SimpleSweepLineIntersector.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\index\SweepLineEvent.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\index\SweepLineSegment.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.0.3\source\geomgraph\TopologyLocation.cpp"
+ >
+ </File>
+ </Filter>
+ </Filter>
+ <Filter
+ Name="Shapelib"
+ >
+ <File
+ RelativePath="..\common\shapelib-1.2.10\dbfopen.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\common\shapelib-1.2.10\shpopen.cpp"
+ >
+ </File>
+ </Filter>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>

Added: sandbox/ggl/other/comparisons/geos/geos_check2005.vcproj
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/geos/geos_check2005.vcproj 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,1387 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="8.00"
+ Name="geos_check"
+ ProjectGUID="{3CB75146-EAFF-4ECB-8540-61FBCAAA702E}"
+ RootNamespace="geos_check"
+ Keyword="Win32Proj"
+ >
+ <Platforms>
+ <Platform
+ Name="Win32"
+ />
+ </Platforms>
+ <ToolFiles>
+ </ToolFiles>
+ <Configurations>
+ <Configuration
+ Name="Debug|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)\geos_check"
+ ConfigurationType="1"
+ CharacterSet="1"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=".;&quot;./geos-3.1.0/source/headers&quot;;&quot;../common/shapelib-1.2.10&quot;"
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;NOMINMAX;WIN32_LEAN_AND_MEAN;NOGDI;_CRT_SECURE_NO_DEPRECATE"
+ MinimalRebuild="true"
+ BasicRuntimeChecks="3"
+ RuntimeLibrary="3"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ Detect64BitPortabilityProblems="true"
+ DebugInformationFormat="4"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="kernel32.lib $(NoInherit)"
+ LinkIncremental="2"
+ GenerateDebugInformation="true"
+ SubSystem="1"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ <Configuration
+ Name="Release|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)\geos_check\2005"
+ ConfigurationType="1"
+ CharacterSet="1"
+ WholeProgramOptimization="0"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ InlineFunctionExpansion="2"
+ EnableIntrinsicFunctions="true"
+ FavorSizeOrSpeed="1"
+ WholeProgramOptimization="false"
+ AdditionalIncludeDirectories=".;&quot;./geos-3.1.0/source/headers&quot;;&quot;../common/shapelib-1.2.10&quot;"
+ PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;NOMINMAX;WIN32_LEAN_AND_MEAN;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_DEPRECATE;_SECURE_SCL=0;_HAS_ITERATOR_DEBUGGING=0;BOOST_DISABLE_ASSERTS;BOOST_ALL_NO_LIB"
+ RuntimeLibrary="0"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ Detect64BitPortabilityProblems="true"
+ DebugInformationFormat="3"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="kernel32.lib $(NoInherit)"
+ OutputFile="$(OutDir)\2005\$(ProjectName).exe"
+ LinkIncremental="1"
+ GenerateManifest="false"
+ GenerateDebugInformation="true"
+ SubSystem="1"
+ OptimizeReferences="2"
+ EnableCOMDATFolding="2"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <Filter
+ Name="Source Files"
+ Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+ >
+ <File
+ RelativePath=".\geos_check.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Lib Files"
+ >
+ <File
+ RelativePath=".\geos-3.1.0\source\inlines.cpp"
+ >
+ </File>
+ <Filter
+ Name="PlanarGraph"
+ >
+ <File
+ RelativePath=".\geos-3.1.0\source\planargraph\DirectedEdge.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\DirectedEdge_2.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\DirectedEdge_2.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\planargraph\DirectedEdgeStar.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\DirectedEdgeStar_2.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\DirectedEdgeStar_2.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\planargraph\Edge.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Edge_2.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Edge_2.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\planargraph\Node.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Node_3.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Node_3.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\planargraph\NodeMap.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\NodeMap_2.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\NodeMap_2.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\planargraph\PlanarGraph.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\PlanarGraph_2.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\PlanarGraph_2.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\planargraph\SubGraph.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\SubGraph_2.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\SubGraph_2.obj"
+ />
+ </FileConfiguration>
+ </File>
+ </Filter>
+ <Filter
+ Name="Index"
+ >
+ <Filter
+ Name="QuadTree"
+ >
+ <File
+ RelativePath=".\geos-3.1.0\source\index\quadtree\DoubleBits.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\index\quadtree\IntervalSize.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\index\quadtree\Key.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Key_q.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Key_q.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\index\quadtree\Node.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Node_q.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Node_q.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\index\quadtree\NodeBase.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\NodeBase_1.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\NodeBase_1.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\index\quadtree\Quadtree.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\valid\QuadtreeNestedRingTester.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\index\quadtree\Root.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Root_q.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Root_q.obj"
+ />
+ </FileConfiguration>
+ </File>
+ </Filter>
+ <Filter
+ Name="BinTree"
+ >
+ <File
+ RelativePath=".\geos-3.1.0\source\index\bintree\Bintree.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\index\bintree\Interval.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\index\bintree\Key.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\index\bintree\Node.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Node_b.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Node_b.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\index\bintree\NodeBase.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\NodeBase_2.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\NodeBase_2.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\index\bintree\Root.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Chain"
+ >
+ <File
+ RelativePath=".\geos-3.1.0\source\index\chain\MonotoneChain.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\index\chain\MonotoneChainBuilder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\index\chain\MonotoneChainOverlapAction.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\index\chain\MonotoneChainSelectAction.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="StrTree"
+ >
+ <File
+ RelativePath=".\geos-3.1.0\source\index\strtree\AbstractNode.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\index\strtree\AbstractSTRtree.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\index\strtree\Interval.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Inverval_2.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Inverval_2.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\index\strtree\ItemBoundable.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\index\strtree\SIRtree.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\index\strtree\STRtree.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="SweepLine"
+ >
+ <File
+ RelativePath=".\geos-3.1.0\source\index\sweepline\SweepLineEvent.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\SweepLineEvent_2.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\SweepLineEvent_2.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\index\sweepline\SweepLineIndex.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\index\sweepline\SweepLineInterval.cpp"
+ >
+ </File>
+ </Filter>
+ </Filter>
+ <Filter
+ Name="Algorithm"
+ >
+ <File
+ RelativePath=".\geos-3.1.0\source\algorithm\CentroidArea.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\algorithm\CentroidLine.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\algorithm\CentroidPoint.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\algorithm\CGAlgorithms.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\algorithm\ConvexHull.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\algorithm\HCoordinate.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\algorithm\InteriorPointArea.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\algorithm\InteriorPointLine.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\algorithm\InteriorPointPoint.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\algorithm\LineIntersector.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\algorithm\MCPointInRing.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\algorithm\MinimumDiameter.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\algorithm\NotRepresentableException.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\algorithm\PointLocator.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\algorithm\RobustDeterminant.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\algorithm\locate\SimplePointInAreaLocator.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\algorithm\SimplePointInRing.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\algorithm\SIRtreePointInRing.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Geom"
+ >
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\Coordinate.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\CoordinateArraySequence.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\CoordinateArraySequenceFactory.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\util\CoordinateOperation.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\CoordinateSequence.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\Dimension.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\Envelope.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\Geometry.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\GeometryCollection.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\GeometryComponentFilter.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\util\GeometryEditor.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\GeometryFactory.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\util\GeometryTransformer.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\IntersectionMatrix.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\LinearRing.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\LineSegment.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\LineString.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\Location.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\MultiLineString.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\MultiPoint.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\MultiPolygon.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\Point.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\Polygon.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\PrecisionModel.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\util\ShortCircuitedGeometryVisitor.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geom\Triangle.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="IO"
+ >
+ <File
+ RelativePath=".\geos-3.1.0\source\io\ByteOrderDataInStream.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\io\ByteOrderValues.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\io\ParseException.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\io\StringTokenizer.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\io\Unload.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\io\WKBReader.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\io\WKBWriter.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\io\WKTReader.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\io\WKTWriter.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\io\Writer.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Noding"
+ >
+ <File
+ RelativePath=".\geos-3.1.0\source\noding\FastNodingValidator.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\noding\snapround\HotPixel.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\noding\IntersectionAdder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\noding\IntersectionFinderAdder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\noding\IteratedNoder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\noding\MCIndexNoder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\noding\snapround\MCIndexPointSnapper.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\noding\snapround\MCIndexSnapRounder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\noding\NodingValidator.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\noding\Octant.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\noding\ScaledNoder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\noding\SegmentNode.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\noding\SegmentNodeList.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\noding\SegmentString.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\noding\SimpleNoder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\noding\snapround\SimpleSnapRounder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\noding\SingleInteriorIntersectionFinder.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Operation"
+ >
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\buffer\BufferBuilder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\buffer\BufferOp.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\buffer\BufferSubgraph.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\distance\ConnectedElementLocationFilter.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\distance\ConnectedElementPointFilter.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\valid\ConnectedInteriorTester.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\valid\ConsistentAreaTester.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\distance\DistanceOp.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\relate\EdgeEndBuilder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\relate\EdgeEndBundle.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\relate\EdgeEndBundleStar.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\polygonize\EdgeRing.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\EdgeRing_2.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\EdgeRing_2.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\overlay\EdgeSetNoder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\linemerge\EdgeString.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\overlay\ElevationMatrix.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\overlay\ElevationMatrixCell.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\overlay\FuzzyPointLocator.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\GeometryGraphOperation.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\distance\GeometryLocation.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\IsSimpleOp.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\valid\IsValidOp.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\overlay\LineBuilder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\linemerge\LineMergeDirectedEdge.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\linemerge\LineMergeEdge.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\linemerge\LineMergeGraph.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\linemerge\LineMerger.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\linemerge\LineSequencer.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\overlay\MaximalEdgeRing.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\overlay\MinimalEdgeRing.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\buffer\OffsetCurveBuilder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\buffer\OffsetCurveSetBuilder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\overlay\OffsetPointGenerator.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\overlay\OverlayNodeFactory.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\overlay\OverlayOp.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\overlay\OverlayResultValidator.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\overlay\PointBuilder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\overlay\PolygonBuilder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\polygonize\PolygonizeDirectedEdge.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\polygonize\PolygonizeEdge.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\polygonize\PolygonizeGraph.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\polygonize\Polygonizer.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\predicate\RectangleContains.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\predicate\RectangleIntersects.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\relate\RelateComputer.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\relate\RelateNode.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\relate\RelateNodeFactory.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\relate\RelateNodeGraph.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\relate\RelateOp.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\valid\RepeatedPointTester.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\buffer\RightmostEdgeFinder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\predicate\SegmentIntersectionTester.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\valid\SimpleNestedRingTester.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\buffer\SubgraphDepthLocater.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\valid\SweeplineNestedRingTester.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\operation\valid\TopologyValidationError.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Precision"
+ >
+ <File
+ RelativePath=".\geos-3.1.0\source\precision\CommonBits.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\precision\CommonBitsOp.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\precision\CommonBitsRemover.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\precision\EnhancedPrecisionOp.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\precision\GeometrySnapper.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\precision\LineStringSnapper.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\precision\SimpleGeometryPrecisionReducer.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Simplify"
+ >
+ <File
+ RelativePath=".\geos-3.1.0\source\simplify\DouglasPeuckerLineSimplifier.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\simplify\DouglasPeuckerSimplifier.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\simplify\LineSegmentIndex.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\simplify\TaggedLineSegment.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\simplify\TaggedLinesSimplifier.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\simplify\TaggedLineString.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\simplify\TaggedLineStringSimplifier.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\simplify\TopologyPreservingSimplifier.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Util"
+ >
+ <File
+ RelativePath=".\geos-3.1.0\source\util\Assert.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\planargraph\algorithm\ConnectedSubgraphFinder.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\util\GeometricShapeFactory.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\util\math.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\util\Profiler.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="GeomGraph"
+ >
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\Depth.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\DirectedEdge.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\DirectedEdgeStar.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\Edge.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\EdgeEnd.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\EdgeEndStar.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\EdgeIntersection.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\EdgeIntersectionList.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\EdgeList.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\EdgeNodingValidator.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\EdgeRing.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\GeometryGraph.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\GraphComponent.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\Label.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\index\MonotoneChainEdge.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\index\MonotoneChainIndexer.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\Node.cpp"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Node_2.obj"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ ObjectFile="$(IntDir)\Node_2.obj"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\NodeFactory.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\NodeMap.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\PlanarGraph.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\Position.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\Quadrant.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\index\SegmentIntersector.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\index\SimpleEdgeSetIntersector.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\index\SimpleMCSweepLineIntersector.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\index\SimpleSweepLineIntersector.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\index\SweepLineEvent.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\index\SweepLineSegment.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\geos-3.1.0\source\geomgraph\TopologyLocation.cpp"
+ >
+ </File>
+ </Filter>
+ </Filter>
+ <Filter
+ Name="Shapelib"
+ >
+ <File
+ RelativePath="..\common\shapelib-1.2.10\dbfopen.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\common\shapelib-1.2.10\shpopen.cpp"
+ >
+ </File>
+ </Filter>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>

Added: sandbox/ggl/other/comparisons/geos/readme.txt
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/geos/readme.txt 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,2 @@
+Download geos from http://trac.osgeo.org/geos and put it in a folder called geos-3.1.1
+(MinGW sources used 3.1.1 from 15-JUN-2009)
\ No newline at end of file

Added: sandbox/ggl/other/comparisons/ggl/Makefile
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/ggl/Makefile 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,36 @@
+# Modify these paths for other locations
+GGL = ../../../boost
+SRC_SHP = ../common/shapelib-1.2.10
+
+
+INC = $(GGL)
+
+CXX = gcc -O3
+CXXFLAGS = -I$(INC) -I$(SRC_SHP) -I../common -I../../../..
+
+GGL_CXXFLAGS = -I$(INC)
+
+DEP = ../common/common.hpp ../common/read_shapefile.hpp
+RELEASE = ../release
+
+
+
+
+all: $(RELEASE)/ggl_check
+
+OBJS = shpopen.o dbfopen.o ggl_check.o
+
+
+
+$(RELEASE)/ggl_check: $(OBJS)
+ $(CXX) $(CXXFLAGS) $(OBJS) -o $(RELEASE)/ggl_check -lstdc++
+
+
+ggl_check.o: ggl_check.cpp $(DEP)
+ $(CXX) -c $(CXXFLAGS) ggl_check.cpp
+
+shpopen.o: $(SRC_SHP)/shpopen.c
+ $(CXX) -c $(CXXFLAGS) $(SRC_SHP)/shpopen.c
+
+dbfopen.o: $(SRC_SHP)/dbfopen.c
+ $(CXX) -c $(CXXFLAGS) $(SRC_SHP)/dbfopen.c

Added: sandbox/ggl/other/comparisons/ggl/ggl_check2005.vcproj
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/ggl/ggl_check2005.vcproj 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,200 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="8.00"
+ Name="ggl_check"
+ ProjectGUID="{92ECE1AC-1A5D-4554-A8AD-690AC266210D}"
+ RootNamespace="ggl_check"
+ Keyword="Win32Proj"
+ >
+ <Platforms>
+ <Platform
+ Name="Win32"
+ />
+ </Platforms>
+ <ToolFiles>
+ </ToolFiles>
+ <Configurations>
+ <Configuration
+ Name="Debug|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)\2005"
+ IntermediateDirectory="$(ConfigurationName)\ggl_check"
+ ConfigurationType="1"
+ CharacterSet="1"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="4"
+ AdditionalIncludeDirectories=".;..;../../../boost;&quot;../common/shapelib-1.2.10&quot;"
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
+ MinimalRebuild="true"
+ RuntimeLibrary="3"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ Detect64BitPortabilityProblems="true"
+ DebugInformationFormat="4"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="kernel32.lib $(NoInherit)"
+ LinkIncremental="2"
+ GenerateDebugInformation="true"
+ SubSystem="1"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ <Configuration
+ Name="Release|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)\ggl_check\2005"
+ ConfigurationType="1"
+ CharacterSet="1"
+ WholeProgramOptimization="0"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ InlineFunctionExpansion="2"
+ EnableIntrinsicFunctions="true"
+ FavorSizeOrSpeed="1"
+ WholeProgramOptimization="false"
+ AdditionalIncludeDirectories=".;..;../../../boost;&quot;../common/shapelib-1.2.10&quot;"
+ PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;NOMINMAX;WIN32_LEAN_AND_MEAN;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_DEPRECATE;_SECURE_SCL=0;_HAS_ITERATOR_DEBUGGING=0;BOOST_DISABLE_ASSERTS;BOOST_ALL_NO_LIB"
+ RuntimeLibrary="0"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ Detect64BitPortabilityProblems="true"
+ DebugInformationFormat="3"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="kernel32.lib $(NoInherit)"
+ OutputFile="$(OutDir)\2005\$(ProjectName).exe"
+ GenerateManifest="false"
+ SubSystem="1"
+ OptimizeReferences="2"
+ EnableCOMDATFolding="2"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <Filter
+ Name="Source Files"
+ Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+ >
+ <File
+ RelativePath="..\common\shapelib-1.2.10\dbfopen.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\ggl_check.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\common\shapelib-1.2.10\shpopen.cpp"
+ >
+ </File>
+ </Filter>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>

Added: sandbox/ggl/other/comparisons/ggl/ggl_check2008.vcproj
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/ggl/ggl_check2008.vcproj 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,195 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="9.00"
+ Name="ggl_check2008"
+ ProjectGUID="{92ECE1AC-1A5D-4554-A8AD-690AC266210D}"
+ RootNamespace="ggl"
+ Keyword="Win32Proj"
+ TargetFrameworkVersion="0"
+ >
+ <Platforms>
+ <Platform
+ Name="Win32"
+ />
+ </Platforms>
+ <ToolFiles>
+ </ToolFiles>
+ <Configurations>
+ <Configuration
+ Name="Debug|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)\ggl_check2008"
+ ConfigurationType="1"
+ CharacterSet="1"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=".;..;../../../boost;&quot;../common/shapelib-1.2.10&quot;"
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
+ MinimalRebuild="true"
+ BasicRuntimeChecks="3"
+ RuntimeLibrary="3"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ DebugInformationFormat="4"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="kernel32.lib $(NoInherit)"
+ LinkIncremental="2"
+ GenerateDebugInformation="true"
+ SubSystem="1"
+ RandomizedBaseAddress="1"
+ DataExecutionPrevention="0"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ <Configuration
+ Name="Release|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)\ggl_check\2008"
+ ConfigurationType="1"
+ CharacterSet="1"
+ WholeProgramOptimization="0"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ InlineFunctionExpansion="2"
+ EnableIntrinsicFunctions="true"
+ FavorSizeOrSpeed="1"
+ WholeProgramOptimization="false"
+ AdditionalIncludeDirectories=".;..;../../../boost;&quot;../common/shapelib-1.2.10&quot;"
+ PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;_SECURE_SCL=0"
+ RuntimeLibrary="0"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ DebugInformationFormat="3"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="kernel32.lib $(NoInherit)"
+ OutputFile="$(OutDir)\2008\$(ProjectName).exe"
+ SubSystem="1"
+ OptimizeReferences="2"
+ EnableCOMDATFolding="2"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <Filter
+ Name="Source Files"
+ Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+ >
+ <File
+ RelativePath="..\common\shapelib-1.2.10\dbfopen.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\ggl_check.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\common\shapelib-1.2.10\shpopen.cpp"
+ >
+ </File>
+ </Filter>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>

Added: sandbox/ggl/other/comparisons/ggl/ggl_simplify_2005.vcproj
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/ggl/ggl_simplify_2005.vcproj 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,200 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="8.00"
+ Name="ggl_simplify"
+ ProjectGUID="{FE765043-354F-485E-914E-69B7632CAE5F}"
+ RootNamespace="ggl_simplify"
+ Keyword="Win32Proj"
+ >
+ <Platforms>
+ <Platform
+ Name="Win32"
+ />
+ </Platforms>
+ <ToolFiles>
+ </ToolFiles>
+ <Configurations>
+ <Configuration
+ Name="Debug|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)\2005"
+ IntermediateDirectory="$(ConfigurationName)\ggl_simplify"
+ ConfigurationType="1"
+ CharacterSet="1"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="4"
+ AdditionalIncludeDirectories=".;..;../../../boost;&quot;../common/shapelib-1.2.10&quot;"
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
+ MinimalRebuild="true"
+ RuntimeLibrary="3"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ Detect64BitPortabilityProblems="true"
+ DebugInformationFormat="4"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="kernel32.lib $(NoInherit)"
+ LinkIncremental="2"
+ GenerateDebugInformation="true"
+ SubSystem="1"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ <Configuration
+ Name="Release|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)\ggl_simplify\2005"
+ ConfigurationType="1"
+ CharacterSet="1"
+ WholeProgramOptimization="0"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ InlineFunctionExpansion="2"
+ EnableIntrinsicFunctions="true"
+ FavorSizeOrSpeed="1"
+ WholeProgramOptimization="false"
+ AdditionalIncludeDirectories=".;..;../../../boost;&quot;../common/shapelib-1.2.10&quot;"
+ PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;NOMINMAX;WIN32_LEAN_AND_MEAN;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_DEPRECATE;_SECURE_SCL=0;_HAS_ITERATOR_DEBUGGING=0;BOOST_DISABLE_ASSERTS;BOOST_ALL_NO_LIB"
+ RuntimeLibrary="0"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ Detect64BitPortabilityProblems="true"
+ DebugInformationFormat="3"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="kernel32.lib $(NoInherit)"
+ OutputFile="$(OutDir)\2005\$(ProjectName).exe"
+ GenerateManifest="false"
+ SubSystem="1"
+ OptimizeReferences="2"
+ EnableCOMDATFolding="2"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <Filter
+ Name="Source Files"
+ Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+ >
+ <File
+ RelativePath="..\common\shapelib-1.2.10\dbfopen.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\ggl_simplify.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\common\shapelib-1.2.10\shpopen.cpp"
+ >
+ </File>
+ </Filter>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>

Added: sandbox/ggl/other/comparisons/gpc/Makefile
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/gpc/Makefile 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,43 @@
+# Modify these paths for other locations
+
+GGLCOMP = ..
+GPC = $(GGLCOMP)/gpc/gpc
+
+
+SRC = $(GPC)/src
+SRC_SHP = $(GGLCOMP)/common/shapelib-1.2.10
+
+
+CXX = gcc -O3 -w
+CXXFLAGS = -I$(GPC) -I$(SRC_SHP) -I$(GGLCOMP)/common -I../../../..
+
+GPC_CXXFLAGS = -I$(GPC)
+
+DEP = $(GGLCOMP)/common/common.hpp $(GGLCOMP)/common/read_shapefile.hpp
+RELEASE = ../release
+
+
+
+
+all: $(RELEASE)/gpc_check
+
+OBJS = shpopen.o dbfopen.o gpc_check.o gpc.o
+
+
+
+$(RELEASE)/gpc_check: $(OBJS)
+ $(CXX) $(CXXFLAGS) $(OBJS) -o $(RELEASE)/gpc_check -lstdc++
+
+gpc_check.o: $(GGLCOMP)/gpc/gpc_check.cpp $(DEP)
+ $(CXX) -c $(CXXFLAGS) $(GGLCOMP)/gpc/gpc_check.cpp
+
+gpc.o: $(GGLCOMP)/gpc/gpc/gpc.c $(DEP)
+ $(CXX) -c $(CXXFLAGS) $(GGLCOMP)/gpc/gpc/gpc.c
+
+
+shpopen.o: $(SRC_SHP)/shpopen.c
+ $(CXX) -c $(CXXFLAGS) $(SRC_SHP)/shpopen.c
+
+dbfopen.o: $(SRC_SHP)/dbfopen.c
+ $(CXX) -c $(CXXFLAGS) $(SRC_SHP)/dbfopen.c
+

Added: sandbox/ggl/other/comparisons/gpc/gpc_check2005.vcproj
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/gpc/gpc_check2005.vcproj 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,204 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="8.00"
+ Name="gpc_check"
+ ProjectGUID="{BFFA8633-C5AF-49B0-AB5F-576524DCD223}"
+ RootNamespace="gpc_check"
+ Keyword="Win32Proj"
+ >
+ <Platforms>
+ <Platform
+ Name="Win32"
+ />
+ </Platforms>
+ <ToolFiles>
+ </ToolFiles>
+ <Configurations>
+ <Configuration
+ Name="Debug|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)\2005"
+ IntermediateDirectory="$(ConfigurationName)\gpc_check"
+ ConfigurationType="1"
+ CharacterSet="1"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="4"
+ AdditionalIncludeDirectories=".;..;./gpc;../../../boost;&quot;../common/shapelib-1.2.10&quot;"
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
+ MinimalRebuild="true"
+ RuntimeLibrary="3"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ Detect64BitPortabilityProblems="true"
+ DebugInformationFormat="4"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="kernel32.lib $(NoInherit)"
+ LinkIncremental="2"
+ GenerateDebugInformation="true"
+ SubSystem="1"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ <Configuration
+ Name="Release|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)\gpc_check\2005"
+ ConfigurationType="1"
+ CharacterSet="1"
+ WholeProgramOptimization="0"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ InlineFunctionExpansion="2"
+ EnableIntrinsicFunctions="true"
+ FavorSizeOrSpeed="1"
+ WholeProgramOptimization="false"
+ AdditionalIncludeDirectories=".;..;./gpc;../../../boost;&quot;../common/shapelib-1.2.10&quot;"
+ PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;NOMINMAX;WIN32_LEAN_AND_MEAN;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_DEPRECATE;_SECURE_SCL=0;_HAS_ITERATOR_DEBUGGING=0;BOOST_DISABLE_ASSERTS;BOOST_ALL_NO_LIB"
+ RuntimeLibrary="0"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ Detect64BitPortabilityProblems="true"
+ DebugInformationFormat="3"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="kernel32.lib $(NoInherit)"
+ OutputFile="$(OutDir)\2005\$(ProjectName).exe"
+ GenerateManifest="false"
+ SubSystem="1"
+ OptimizeReferences="2"
+ EnableCOMDATFolding="2"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <Filter
+ Name="Source Files"
+ Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+ >
+ <File
+ RelativePath="..\common\shapelib-1.2.10\dbfopen.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\gpc\gpc.c"
+ >
+ </File>
+ <File
+ RelativePath=".\gpc_check.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\common\shapelib-1.2.10\shpopen.cpp"
+ >
+ </File>
+ </Filter>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>

Added: sandbox/ggl/other/comparisons/gpc/readme.txt
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/gpc/readme.txt 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1 @@
+Download gpc from http://www.cs.man.ac.uk/~toby/alan/software and put it in a subfolder called gpc
\ No newline at end of file

Added: sandbox/ggl/other/comparisons/gtl/Makefile
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/gtl/Makefile 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,36 @@
+# Modify these paths for other locations
+GTL = ../../../../gtl
+SRC_SHP = ../common/shapelib-1.2.10
+
+
+INC = $(GTL)
+
+CXX = gcc -O3
+CXXFLAGS = -I$(INC) -I$(SRC_SHP) -I../common -I../../../..
+
+GTL_CXXFLAGS = -I$(INC)
+
+DEP = ../common/common.hpp ../common/read_shapefile.hpp
+RELEASE = ../release
+
+
+
+
+all: $(RELEASE)/gtl_check
+
+OBJS = shpopen.o dbfopen.o gtl_check.o
+
+
+
+$(RELEASE)/gtl_check: $(OBJS)
+ $(CXX) $(CXXFLAGS) $(OBJS) -o $(RELEASE)/gtl_check -lstdc++
+
+
+gtl_check.o: gtl_check.cpp $(DEP)
+ $(CXX) -c $(CXXFLAGS) gtl_check.cpp
+
+shpopen.o: $(SRC_SHP)/shpopen.c
+ $(CXX) -c $(CXXFLAGS) $(SRC_SHP)/shpopen.c
+
+dbfopen.o: $(SRC_SHP)/dbfopen.c
+ $(CXX) -c $(CXXFLAGS) $(SRC_SHP)/dbfopen.c

Added: sandbox/ggl/other/comparisons/gtl/gtl_check2005.vcproj
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/gtl/gtl_check2005.vcproj 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,203 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="8.00"
+ Name="gtl_check"
+ ProjectGUID="{E44A41E1-8E28-4D5A-AEA7-C861A337625F}"
+ RootNamespace="gtl"
+ Keyword="Win32Proj"
+ >
+ <Platforms>
+ <Platform
+ Name="Win32"
+ />
+ </Platforms>
+ <ToolFiles>
+ </ToolFiles>
+ <Configurations>
+ <Configuration
+ Name="Debug|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)\gtl"
+ ConfigurationType="1"
+ CharacterSet="1"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ ExcludedFromBuild="true"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=".;c:\svn\gtl;&quot;../common/shapelib-1.2.10&quot;"
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
+ MinimalRebuild="true"
+ BasicRuntimeChecks="3"
+ RuntimeLibrary="3"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ Detect64BitPortabilityProblems="true"
+ DebugInformationFormat="4"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="kernel32.lib $(NoInherit)"
+ OutputFile="$(OutDir)\2005\$(ProjectName).exe"
+ SubSystem="1"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ <Configuration
+ Name="Release|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)\gtl"
+ ConfigurationType="1"
+ CharacterSet="1"
+ WholeProgramOptimization="0"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ ExcludedFromBuild="true"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ InlineFunctionExpansion="2"
+ EnableIntrinsicFunctions="true"
+ FavorSizeOrSpeed="1"
+ WholeProgramOptimization="true"
+ AdditionalIncludeDirectories=".;c:\svn\gtl;&quot;../common/shapelib-1.2.10&quot;"
+ PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;NOMINMAX;WIN32_LEAN_AND_MEAN;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_DEPRECATE;_SECURE_SCL=0;_HAS_ITERATOR_DEBUGGING=0;BOOST_DISABLE_ASSERTS;BOOST_ALL_NO_LIB"
+ RuntimeLibrary="2"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ Detect64BitPortabilityProblems="true"
+ DebugInformationFormat="3"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="kernel32.lib $(NoInherit)"
+ OutputFile="$(OutDir)\2005\$(ProjectName).exe"
+ LinkIncremental="1"
+ GenerateDebugInformation="true"
+ SubSystem="1"
+ OptimizeReferences="2"
+ EnableCOMDATFolding="2"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <Filter
+ Name="Source Files"
+ Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+ >
+ <File
+ RelativePath="..\common\shapelib-1.2.10\dbfopen.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\gtl_check.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\common\shapelib-1.2.10\shpopen.cpp"
+ >
+ </File>
+ </Filter>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>

Added: sandbox/ggl/other/comparisons/gtl/gtl_check2008.vcproj
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/gtl/gtl_check2008.vcproj 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,199 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="9.00"
+ Name="gtl_check2008"
+ ProjectGUID="{EF394DD6-D508-4A72-B9B9-756AC2AFD5B9}"
+ RootNamespace="gtl"
+ Keyword="Win32Proj"
+ TargetFrameworkVersion="131072"
+ >
+ <Platforms>
+ <Platform
+ Name="Win32"
+ />
+ </Platforms>
+ <ToolFiles>
+ </ToolFiles>
+ <Configurations>
+ <Configuration
+ Name="Debug|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)\gtl"
+ ConfigurationType="1"
+ CharacterSet="1"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=".;c:\svn\gtl;&quot;../common/shapelib-1.2.10&quot;"
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
+ MinimalRebuild="true"
+ BasicRuntimeChecks="3"
+ RuntimeLibrary="3"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ DebugInformationFormat="4"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="kernel32.lib $(NoInherit)"
+ LinkIncremental="2"
+ GenerateDebugInformation="true"
+ SubSystem="1"
+ RandomizedBaseAddress="1"
+ DataExecutionPrevention="0"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ <Configuration
+ Name="Release|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)\gtl\2008"
+ ConfigurationType="1"
+ CharacterSet="1"
+ WholeProgramOptimization="1"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ InlineFunctionExpansion="2"
+ EnableIntrinsicFunctions="true"
+ FavorSizeOrSpeed="1"
+ WholeProgramOptimization="true"
+ AdditionalIncludeDirectories=".;c:\svn\gtl;&quot;../common/shapelib-1.2.10&quot;"
+ PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;NOMINMAX;WIN32_LEAN_AND_MEAN;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_DEPRECATE;_SECURE_SCL=0;_HAS_ITERATOR_DEBUGGING=0"
+ RuntimeLibrary="2"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ DebugInformationFormat="3"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="kernel32.lib $(NoInherit)"
+ OutputFile="$(OutDir)\2008\$(ProjectName).exe"
+ LinkIncremental="1"
+ GenerateDebugInformation="false"
+ SubSystem="1"
+ OptimizeReferences="2"
+ EnableCOMDATFolding="2"
+ RandomizedBaseAddress="1"
+ DataExecutionPrevention="0"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <Filter
+ Name="Source Files"
+ Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+ >
+ <File
+ RelativePath="..\common\shapelib-1.2.10\dbfopen.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\gtl_check.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\common\shapelib-1.2.10\shpopen.cpp"
+ >
+ </File>
+ </Filter>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>

Added: sandbox/ggl/other/comparisons/readme.txt
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/readme.txt 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,7 @@
+Download shapelib from http://shapelib.maptools.org and put it in a folder common/shapelib-1.2.10.
+
+Note: only following files are necessary:
+- dbfopen.c
+- shpopen.c
+- shapefil.h
+

Added: sandbox/ggl/other/comparisons/speed_comparisons2005.sln
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/speed_comparisons2005.sln 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,73 @@
+Microsoft Visual Studio Solution File, Format Version 9.00
+# Visual C++ Express 2005
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ggl_check", "ggl\ggl_check2005.vcproj", "{92ECE1AC-1A5D-4554-A8AD-690AC266210D}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "geos_check", "geos\geos_check2005.vcproj", "{3CB75146-EAFF-4ECB-8540-61FBCAAA702E}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wykobi_check", "wykobi\wykobi_check2005.vcproj", "{B0DEE6FF-F197-4EAE-BC00-5228EE05E293}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ogr_check", "gdal\ogr_check2005.vcproj", "{600AA64F-7DDD-4462-BA80-26CE8A6463B9}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "terralib_check", "terralib\terralib_check2005.vcproj", "{5151BFDF-6C00-42EE-9861-E0094A5D5A56}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtl_check", "gtl\gtl_check2005.vcproj", "{E44A41E1-8E28-4D5A-AEA7-C861A337625F}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cgal_check", "cgal\cgal_check2005.vcproj", "{361C0D3F-7A01-4E40-B750-81F344EE577C}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gengeomalg_check", "gengeomalg\gengeomalg_check2005.vcproj", "{CCCC897C-08FA-408B-8C5B-0492D4A90B54}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ggl_simplify", "ggl\ggl_simplify_2005.vcproj", "{FE765043-354F-485E-914E-69B7632CAE5F}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gpc_check", "gpc\gpc_check2005.vcproj", "{BFFA8633-C5AF-49B0-AB5F-576524DCD223}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Win32 = Debug|Win32
+ Release|Win32 = Release|Win32
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {92ECE1AC-1A5D-4554-A8AD-690AC266210D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {92ECE1AC-1A5D-4554-A8AD-690AC266210D}.Debug|Win32.Build.0 = Debug|Win32
+ {92ECE1AC-1A5D-4554-A8AD-690AC266210D}.Release|Win32.ActiveCfg = Release|Win32
+ {92ECE1AC-1A5D-4554-A8AD-690AC266210D}.Release|Win32.Build.0 = Release|Win32
+ {3CB75146-EAFF-4ECB-8540-61FBCAAA702E}.Debug|Win32.ActiveCfg = Debug|Win32
+ {3CB75146-EAFF-4ECB-8540-61FBCAAA702E}.Debug|Win32.Build.0 = Debug|Win32
+ {3CB75146-EAFF-4ECB-8540-61FBCAAA702E}.Release|Win32.ActiveCfg = Release|Win32
+ {3CB75146-EAFF-4ECB-8540-61FBCAAA702E}.Release|Win32.Build.0 = Release|Win32
+ {B0DEE6FF-F197-4EAE-BC00-5228EE05E293}.Debug|Win32.ActiveCfg = Debug|Win32
+ {B0DEE6FF-F197-4EAE-BC00-5228EE05E293}.Debug|Win32.Build.0 = Debug|Win32
+ {B0DEE6FF-F197-4EAE-BC00-5228EE05E293}.Release|Win32.ActiveCfg = Release|Win32
+ {B0DEE6FF-F197-4EAE-BC00-5228EE05E293}.Release|Win32.Build.0 = Release|Win32
+ {600AA64F-7DDD-4462-BA80-26CE8A6463B9}.Debug|Win32.ActiveCfg = Debug|Win32
+ {600AA64F-7DDD-4462-BA80-26CE8A6463B9}.Debug|Win32.Build.0 = Debug|Win32
+ {600AA64F-7DDD-4462-BA80-26CE8A6463B9}.Release|Win32.ActiveCfg = Release|Win32
+ {600AA64F-7DDD-4462-BA80-26CE8A6463B9}.Release|Win32.Build.0 = Release|Win32
+ {5151BFDF-6C00-42EE-9861-E0094A5D5A56}.Debug|Win32.ActiveCfg = Debug|Win32
+ {5151BFDF-6C00-42EE-9861-E0094A5D5A56}.Debug|Win32.Build.0 = Debug|Win32
+ {5151BFDF-6C00-42EE-9861-E0094A5D5A56}.Release|Win32.ActiveCfg = Release|Win32
+ {5151BFDF-6C00-42EE-9861-E0094A5D5A56}.Release|Win32.Build.0 = Release|Win32
+ {E44A41E1-8E28-4D5A-AEA7-C861A337625F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {E44A41E1-8E28-4D5A-AEA7-C861A337625F}.Debug|Win32.Build.0 = Debug|Win32
+ {E44A41E1-8E28-4D5A-AEA7-C861A337625F}.Release|Win32.ActiveCfg = Release|Win32
+ {E44A41E1-8E28-4D5A-AEA7-C861A337625F}.Release|Win32.Build.0 = Release|Win32
+ {361C0D3F-7A01-4E40-B750-81F344EE577C}.Debug|Win32.ActiveCfg = Debug|Win32
+ {361C0D3F-7A01-4E40-B750-81F344EE577C}.Debug|Win32.Build.0 = Debug|Win32
+ {361C0D3F-7A01-4E40-B750-81F344EE577C}.Release|Win32.ActiveCfg = Release|Win32
+ {361C0D3F-7A01-4E40-B750-81F344EE577C}.Release|Win32.Build.0 = Release|Win32
+ {CCCC897C-08FA-408B-8C5B-0492D4A90B54}.Debug|Win32.ActiveCfg = Debug|Win32
+ {CCCC897C-08FA-408B-8C5B-0492D4A90B54}.Debug|Win32.Build.0 = Debug|Win32
+ {CCCC897C-08FA-408B-8C5B-0492D4A90B54}.Release|Win32.ActiveCfg = Release|Win32
+ {CCCC897C-08FA-408B-8C5B-0492D4A90B54}.Release|Win32.Build.0 = Release|Win32
+ {FE765043-354F-485E-914E-69B7632CAE5F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {FE765043-354F-485E-914E-69B7632CAE5F}.Debug|Win32.Build.0 = Debug|Win32
+ {FE765043-354F-485E-914E-69B7632CAE5F}.Release|Win32.ActiveCfg = Release|Win32
+ {FE765043-354F-485E-914E-69B7632CAE5F}.Release|Win32.Build.0 = Release|Win32
+ {BFFA8633-C5AF-49B0-AB5F-576524DCD223}.Debug|Win32.ActiveCfg = Debug|Win32
+ {BFFA8633-C5AF-49B0-AB5F-576524DCD223}.Debug|Win32.Build.0 = Debug|Win32
+ {BFFA8633-C5AF-49B0-AB5F-576524DCD223}.Release|Win32.ActiveCfg = Release|Win32
+ {BFFA8633-C5AF-49B0-AB5F-576524DCD223}.Release|Win32.Build.0 = Release|Win32
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal

Added: sandbox/ggl/other/comparisons/speed_comparisons2008.sln
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/speed_comparisons2008.sln 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,49 @@
+Microsoft Visual Studio Solution File, Format Version 10.00
+# Visual C++ Express 2008
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ggl_check2008", "ggl\ggl_check2008.vcproj", "{92ECE1AC-1A5D-4554-A8AD-690AC266210D}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "geos_check", "geos\geos_check.vcproj", "{3CB75146-EAFF-4ECB-8540-61FBCAAA702E}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wykobi_check", "wykobi\wykobi_check.vcproj", "{B0DEE6FF-F197-4EAE-BC00-5228EE05E293}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ogr_check", "gdal\ogr_check.vcproj", "{600AA64F-7DDD-4462-BA80-26CE8A6463B9}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gengeomalg_check2008", "gengeomalg\gengeomalg_check2008.vcproj", "{84864F93-CC1B-4014-A059-F9710C9718A6}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtl_check2008", "gtl\gtl_check2008.vcproj", "{EF394DD6-D508-4A72-B9B9-756AC2AFD5B9}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Win32 = Debug|Win32
+ Release|Win32 = Release|Win32
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {92ECE1AC-1A5D-4554-A8AD-690AC266210D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {92ECE1AC-1A5D-4554-A8AD-690AC266210D}.Debug|Win32.Build.0 = Debug|Win32
+ {92ECE1AC-1A5D-4554-A8AD-690AC266210D}.Release|Win32.ActiveCfg = Release|Win32
+ {92ECE1AC-1A5D-4554-A8AD-690AC266210D}.Release|Win32.Build.0 = Release|Win32
+ {3CB75146-EAFF-4ECB-8540-61FBCAAA702E}.Debug|Win32.ActiveCfg = Debug|Win32
+ {3CB75146-EAFF-4ECB-8540-61FBCAAA702E}.Debug|Win32.Build.0 = Debug|Win32
+ {3CB75146-EAFF-4ECB-8540-61FBCAAA702E}.Release|Win32.ActiveCfg = Release|Win32
+ {3CB75146-EAFF-4ECB-8540-61FBCAAA702E}.Release|Win32.Build.0 = Release|Win32
+ {B0DEE6FF-F197-4EAE-BC00-5228EE05E293}.Debug|Win32.ActiveCfg = Debug|Win32
+ {B0DEE6FF-F197-4EAE-BC00-5228EE05E293}.Debug|Win32.Build.0 = Debug|Win32
+ {B0DEE6FF-F197-4EAE-BC00-5228EE05E293}.Release|Win32.ActiveCfg = Release|Win32
+ {B0DEE6FF-F197-4EAE-BC00-5228EE05E293}.Release|Win32.Build.0 = Release|Win32
+ {600AA64F-7DDD-4462-BA80-26CE8A6463B9}.Debug|Win32.ActiveCfg = Debug|Win32
+ {600AA64F-7DDD-4462-BA80-26CE8A6463B9}.Debug|Win32.Build.0 = Debug|Win32
+ {600AA64F-7DDD-4462-BA80-26CE8A6463B9}.Release|Win32.ActiveCfg = Release|Win32
+ {600AA64F-7DDD-4462-BA80-26CE8A6463B9}.Release|Win32.Build.0 = Release|Win32
+ {84864F93-CC1B-4014-A059-F9710C9718A6}.Debug|Win32.ActiveCfg = Debug|Win32
+ {84864F93-CC1B-4014-A059-F9710C9718A6}.Debug|Win32.Build.0 = Debug|Win32
+ {84864F93-CC1B-4014-A059-F9710C9718A6}.Release|Win32.ActiveCfg = Release|Win32
+ {84864F93-CC1B-4014-A059-F9710C9718A6}.Release|Win32.Build.0 = Release|Win32
+ {EF394DD6-D508-4A72-B9B9-756AC2AFD5B9}.Debug|Win32.ActiveCfg = Debug|Win32
+ {EF394DD6-D508-4A72-B9B9-756AC2AFD5B9}.Debug|Win32.Build.0 = Debug|Win32
+ {EF394DD6-D508-4A72-B9B9-756AC2AFD5B9}.Release|Win32.ActiveCfg = Release|Win32
+ {EF394DD6-D508-4A72-B9B9-756AC2AFD5B9}.Release|Win32.Build.0 = Release|Win32
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal

Added: sandbox/ggl/other/comparisons/terralib/Makefile
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/terralib/Makefile 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,87 @@
+# Modify these paths for other locations
+
+GGLCOMP = /c/svn/geolib/trunk/src/cpp/library/gl/other/comparisons
+
+TL = $(GGLCOMP)/terralib/src/terralib/kernel
+SRC = $(TL)/src
+SRC_SHP = $(GGLCOMP)/common/shapelib-1.2.10
+
+
+INC = $(TL)
+
+CXX = gcc -O3 -w
+CXXFLAGS = -DTL_DLL= -I$(INC) -I$(SRC_SHP) -I$(GGLCOMP)/common
+
+TL_CXXFLAGS = -I$(INC) -DTL_DLL=
+
+DEP = $(GGLCOMP)/common/common.hpp $(GGLCOMP)/common/read_shapefile.hpp
+RELEASE = ../release
+
+
+all: $(RELEASE)/terralib_check
+
+OBJS = TeAsciiFile.o TeBox.o TeErrorLog.o TeException.o TeFragmentation.o TeGeometry.o \
+ TeMultiGeometry.o TeGeometryAlgorithms.o TeIntersector.o TeStdFile.o TeUtils.o \
+ TeCentroid.o TeOverlay.o TeOverlayUtils.o \
+ shpopen.o dbfopen.o \
+ terralib_check.o
+
+
+
+$(RELEASE)/terralib_check: $(OBJS)
+ $(CXX) $(CXXFLAGS) $(OBJS) -o $(RELEASE)/terralib_check -lstdc++
+
+
+terralib_check.o: $(GGLCOMP)/terralib/terralib_check.cpp $(DEP)
+ $(CXX) -c $(CXXFLAGS) $(GGLCOMP)/terralib/terralib_check.cpp
+
+shpopen.o: $(SRC_SHP)/shpopen.c
+ $(CXX) -c $(CXXFLAGS) $(SRC_SHP)/shpopen.c
+
+dbfopen.o: $(SRC_SHP)/dbfopen.c
+ $(CXX) -c $(CXXFLAGS) $(SRC_SHP)/dbfopen.c
+
+# TERRALIB
+
+TeAsciiFile.o: $(TL)/TeAsciiFile.cpp
+ $(CXX) -c $(TL_CXXFLAGS) $(TL)/TeAsciiFile.cpp
+
+TeBox.o: $(TL)/TeBox.cpp
+ $(CXX) -c $(TL_CXXFLAGS) $(TL)/TeBox.cpp
+
+TeErrorLog.o: $(TL)/TeErrorLog.cpp
+ $(CXX) -c $(TL_CXXFLAGS) $(TL)/TeErrorLog.cpp
+
+TeException.o: $(TL)/TeException.cpp
+ $(CXX) -c $(TL_CXXFLAGS) $(TL)/TeException.cpp
+
+TeFragmentation.o: $(TL)/TeFragmentation.cpp
+ $(CXX) -c $(TL_CXXFLAGS) $(TL)/TeFragmentation.cpp
+
+TeGeometry.o: $(TL)/TeGeometry.cpp
+ $(CXX) -c $(TL_CXXFLAGS) $(TL)/TeGeometry.cpp
+
+TeMultiGeometry.o: $(TL)/TeMultiGeometry.cpp
+ $(CXX) -c $(TL_CXXFLAGS) $(TL)/TeMultiGeometry.cpp
+
+TeGeometryAlgorithms.o: $(TL)/TeGeometryAlgorithms.cpp
+ $(CXX) -c $(TL_CXXFLAGS) $(TL)/TeGeometryAlgorithms.cpp
+
+TeIntersector.o: $(TL)/TeIntersector.cpp
+ $(CXX) -c $(TL_CXXFLAGS) $(TL)/TeIntersector.cpp
+
+TeStdFile.o: $(TL)/TeStdFile.cpp
+ $(CXX) -c $(TL_CXXFLAGS) $(TL)/TeStdFile.cpp
+
+TeUtils.o: $(TL)/TeUtils.cpp
+ $(CXX) -c $(TL_CXXFLAGS) $(TL)/TeUtils.cpp
+
+TeCentroid.o: $(TL)/TeCentroid.cpp
+ $(CXX) -c $(TL_CXXFLAGS) $(TL)/TeCentroid.cpp
+
+TeOverlay.o: $(TL)/TeOverlay.cpp
+ $(CXX) -c $(TL_CXXFLAGS) $(TL)/TeOverlay.cpp
+
+TeOverlayUtils.o: $(TL)/TeOverlayUtils.cpp
+ $(CXX) -c $(TL_CXXFLAGS) $(TL)/TeOverlayUtils.cpp
+

Added: sandbox/ggl/other/comparisons/terralib/readme.txt
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/terralib/readme.txt 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,2 @@
+Ask terralib by mail for access to terralib and put it in src/terralib, such that there is:
+.../src/terralib/kernel

Added: sandbox/ggl/other/comparisons/terralib/terralib_check2005.vcproj
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/terralib/terralib_check2005.vcproj 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,276 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="8.00"
+ Name="terralib_check"
+ ProjectGUID="{5151BFDF-6C00-42EE-9861-E0094A5D5A56}"
+ >
+ <Platforms>
+ <Platform
+ Name="Win32"
+ />
+ </Platforms>
+ <ToolFiles>
+ </ToolFiles>
+ <Configurations>
+ <Configuration
+ Name="Debug|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)\terralib_check2005"
+ ConfigurationType="1"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ WarningLevel="0"
+ DefaultCharType="0"
+ EnableErrorChecks="1"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="4"
+ AdditionalIncludeDirectories="..\..\terralibw\ado;.;..;.\src\terralib\functions;.\src\terralib\kernel;..\..\src\zlib;.\src\terralib\drivers\MySQL;.\src\terralib\drivers\MySQL\include;&quot;..\common\shapelib-1.2.10&quot;;.\src\terralib\application"
+ PreprocessorDefinitions="TL_DLL=;UNICODE;WIN32;_CRT_SECURE_NO_WARNINGS"
+ GeneratePreprocessedFile="0"
+ MinimalRebuild="true"
+ ExceptionHandling="1"
+ RuntimeLibrary="1"
+ BufferSecurityCheck="false"
+ RuntimeTypeInfo="true"
+ AssemblerListingLocation="Debug\"
+ ObjectFile="Debug\"
+ ProgramDataBaseFileName=".\"
+ WarningLevel="1"
+ SuppressStartupBanner="true"
+ DebugInformationFormat="3"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ PreprocessorDefinitions="NDEBUG"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="..\..\terralibw\terralib\Debug\terralib.lib ..\..\terralibw\zlib\zlibdll.lib ..\..\terralibw\libjpeg\Debug\libjpeg.lib ..\..\terralibw\MySQL\libMySQL.lib ..\..\terralibw\shapelib\Debug\shapelib.lib ..\..\terralibw\tiff\Debug\tiff.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib imm32.lib winmm.lib wsock32.lib winspool.lib delayimp.lib"
+ OutputFile="Debug\terralib_check2005.exe"
+ LinkIncremental="2"
+ SuppressStartupBanner="true"
+ IgnoreDefaultLibraryNames=""
+ GenerateDebugInformation="true"
+ ProgramDatabaseFile=""
+ SubSystem="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ <Configuration
+ Name="Release|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)\terralib_check\2005"
+ ConfigurationType="1"
+ InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
+ UseOfMFC="0"
+ ATLMinimizesCRunTimeLibraryUsage="false"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ WarningLevel="0"
+ DefaultCharType="0"
+ EnableErrorChecks="1"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ InlineFunctionExpansion="2"
+ EnableIntrinsicFunctions="true"
+ FavorSizeOrSpeed="1"
+ WholeProgramOptimization="false"
+ AdditionalIncludeDirectories="..\..\terralibw\ado;.;..;.\src\terralib\functions;.\src\terralib\kernel;..\..\src\zlib;.\src\terralib\drivers\MySQL;.\src\terralib\drivers\MySQL\include;&quot;..\common\shapelib-1.2.10&quot;;.\src\terralib\application"
+ PreprocessorDefinitions="TL_DLL=;WIN32;NDEBUG;_CONSOLE;NOMINMAX;WIN32_LEAN_AND_MEAN;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_DEPRECATE;_SECURE_SCL=0;_HAS_ITERATOR_DEBUGGING=0;BOOST_DISABLE_ASSERTS;BOOST_ALL_NO_LIB"
+ RuntimeLibrary="0"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ PreprocessorDefinitions="NDEBUG"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ OutputFile="$(OutDir)\2005\$(ProjectName).exe"
+ GenerateManifest="false"
+ SubSystem="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <Filter
+ Name="Source Files"
+ Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+ >
+ <File
+ RelativePath=".\terralib_check.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Shapelib"
+ >
+ <File
+ RelativePath="..\common\shapelib-1.2.10\dbfopen.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\common\shapelib-1.2.10\shpopen.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="TerraLib Files"
+ >
+ <File
+ RelativePath=".\src\terralib\kernel\TeAsciiFile.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\src\terralib\kernel\TeBox.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\src\terralib\kernel\TeCentroid.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\src\terralib\kernel\TeErrorLog.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\src\terralib\kernel\TeException.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\src\terralib\kernel\TeFragmentation.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\src\terralib\kernel\TeGeometry.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\src\terralib\kernel\TeGeometryAlgorithms.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\src\terralib\kernel\TeIntersector.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\src\terralib\kernel\TeMultiGeometry.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\src\terralib\kernel\TeOverlay.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\src\terralib\kernel\TeOverlayUtils.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\src\terralib\kernel\TeProgress.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\src\terralib\kernel\TeStdFile.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\src\terralib\kernel\TeUtils.cpp"
+ >
+ </File>
+ </Filter>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>

Added: sandbox/ggl/other/comparisons/wykobi/Makefile
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/wykobi/Makefile 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,36 @@
+# Modify these paths for other locations
+WYKOBI = /c/svn/geolib/trunk/src/cpp/library/gl/geometry/comparisons/wykobi/wykobi
+SRC_SHP = ../common/shapelib-1.2.10
+
+
+INC = $(WYKOBI)
+
+CXX = gcc -O3
+CXXFLAGS = -I$(INC) -I$(SRC_SHP) -I../common
+
+WYKOBI_CXXFLAGS = -I$(INC)
+
+DEP = ../common/common.hpp ../common/read_shapefile.hpp
+RELEASE = ../release
+
+
+
+
+all: $(RELEASE)/wykobi_check
+
+OBJS = shpopen.o dbfopen.o wykobi_check.o
+
+
+
+$(RELEASE)/wykobi_check: $(OBJS)
+ $(CXX) $(CXXFLAGS) $(OBJS) -o $(RELEASE)/wykobi_check -lstdc++
+
+
+wykobi_check.o: wykobi_check.cpp $(DEP)
+ $(CXX) -c $(CXXFLAGS) wykobi_check.cpp
+
+shpopen.o: $(SRC_SHP)/shpopen.c
+ $(CXX) -c $(CXXFLAGS) $(SRC_SHP)/shpopen.c
+
+dbfopen.o: $(SRC_SHP)/dbfopen.c
+ $(CXX) -c $(CXXFLAGS) $(SRC_SHP)/dbfopen.c

Added: sandbox/ggl/other/comparisons/wykobi/readme.txt
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/wykobi/readme.txt 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1 @@
+Download wykobi from http://www.wykobi.com and put it in a subfolder called 'wykobi'
\ No newline at end of file

Added: sandbox/ggl/other/comparisons/wykobi/wykobi/Makefile
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/wykobi/wykobi/Makefile 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,43 @@
+#
+# ***********************************************************************
+# * *
+# * Wykobi Computational Geometry Library *
+# * Release Version 0.0.4 *
+# * http://www.wykobi.com *
+# * Copyright (c) 2005-2009 Arash Partow, All Rights Reserved. *
+# * *
+# * The Wykobi computational library and its components are supplied *
+# * under the terms of the General Wykobi License agreement. The *
+# * contents of the Wykobi computational library and its components may *
+# * not be copied or disclosed except in accordance with the terms of *
+# * that agreement. *
+# * *
+# * URL: http://www.wykobi.com/license.html *
+# * *
+# ***********************************************************************
+#
+
+
+CC = -c++
+OPTIONS = -pedantic-errors -ansi -Wall -Werror -Wunused -O3 -o
+OPTIONS_LIBS = -pedantic-errors -ansi -Wall -Werror -Wunused -O3 -c
+
+CPP_SRC =
+
+OBJECTS = $(CPP_SRC:.cpp=.o)
+
+%.o: %.hpp %.cpp
+ $(CC) $(OPTIONS_LIBS) $*.cpp -o $@
+
+all: $(OBJECTS) wykobi_build
+
+wykobi_build : wykobi_build.cpp wykobi.hpp wykobi_math.hpp $(OBJECTS)
+ $(CC) $(OPTIONS) wykobi_build wykobi_build.cpp $(OBJECTS)
+
+clean:
+ rm -f core *.o *.bak *stackdump
+
+
+#
+# The End !
+#

Added: sandbox/ggl/other/comparisons/wykobi/wykobi_check.vcproj
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/wykobi/wykobi_check.vcproj 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,199 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="9.00"
+ Name="wykobi_check"
+ ProjectGUID="{B0DEE6FF-F197-4EAE-BC00-5228EE05E293}"
+ RootNamespace="wykobi"
+ Keyword="Win32Proj"
+ TargetFrameworkVersion="131072"
+ >
+ <Platforms>
+ <Platform
+ Name="Win32"
+ />
+ </Platforms>
+ <ToolFiles>
+ </ToolFiles>
+ <Configurations>
+ <Configuration
+ Name="Debug|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)\wykobi"
+ ConfigurationType="1"
+ CharacterSet="1"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=".;./wykobi;&quot;../common/shapelib-1.2.10&quot;"
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
+ MinimalRebuild="true"
+ BasicRuntimeChecks="3"
+ RuntimeLibrary="3"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ DebugInformationFormat="4"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="kernel32.lib $(NoInherit)"
+ LinkIncremental="2"
+ GenerateDebugInformation="true"
+ SubSystem="1"
+ RandomizedBaseAddress="1"
+ DataExecutionPrevention="0"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ <Configuration
+ Name="Release|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)\wykobi\2008"
+ ConfigurationType="1"
+ CharacterSet="1"
+ WholeProgramOptimization="1"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ InlineFunctionExpansion="2"
+ EnableIntrinsicFunctions="true"
+ FavorSizeOrSpeed="1"
+ WholeProgramOptimization="true"
+ AdditionalIncludeDirectories=".;./wykobi;&quot;../common/shapelib-1.2.10&quot;"
+ PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;NOMINMAX;WIN32_LEAN_AND_MEAN;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_DEPRECATE;_SECURE_SCL=0;_HAS_ITERATOR_DEBUGGING=0;BOOST_DISABLE_ASSERTS;BOOST_ALL_NO_LIB"
+ RuntimeLibrary="0"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ DebugInformationFormat="3"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="kernel32.lib $(NoInherit)"
+ OutputFile="$(OutDir)\2008\$(ProjectName).exe"
+ LinkIncremental="1"
+ GenerateDebugInformation="false"
+ SubSystem="1"
+ OptimizeReferences="2"
+ EnableCOMDATFolding="2"
+ RandomizedBaseAddress="1"
+ DataExecutionPrevention="0"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <Filter
+ Name="Source Files"
+ Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+ >
+ <File
+ RelativePath="..\common\shapelib-1.2.10\dbfopen.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\common\shapelib-1.2.10\shpopen.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\wykobi_check.cpp"
+ >
+ </File>
+ </Filter>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>

Added: sandbox/ggl/other/comparisons/wykobi/wykobi_check2005.vcproj
==============================================================================
--- (empty file)
+++ sandbox/ggl/other/comparisons/wykobi/wykobi_check2005.vcproj 2009-08-28 04:51:40 EDT (Fri, 28 Aug 2009)
@@ -0,0 +1,201 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="8.00"
+ Name="wykobi_check"
+ ProjectGUID="{B0DEE6FF-F197-4EAE-BC00-5228EE05E293}"
+ RootNamespace="wykobi"
+ Keyword="Win32Proj"
+ >
+ <Platforms>
+ <Platform
+ Name="Win32"
+ />
+ </Platforms>
+ <ToolFiles>
+ </ToolFiles>
+ <Configurations>
+ <Configuration
+ Name="Debug|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)\wykobi"
+ ConfigurationType="1"
+ CharacterSet="1"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=".;./wykobi;&quot;../common/shapelib-1.2.10&quot;"
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
+ MinimalRebuild="true"
+ BasicRuntimeChecks="3"
+ RuntimeLibrary="3"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ Detect64BitPortabilityProblems="true"
+ DebugInformationFormat="4"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="kernel32.lib $(NoInherit)"
+ LinkIncremental="2"
+ GenerateDebugInformation="true"
+ SubSystem="1"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ <Configuration
+ Name="Release|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)\wykobi\2005"
+ ConfigurationType="1"
+ CharacterSet="1"
+ WholeProgramOptimization="0"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ InlineFunctionExpansion="2"
+ EnableIntrinsicFunctions="true"
+ FavorSizeOrSpeed="1"
+ WholeProgramOptimization="false"
+ AdditionalIncludeDirectories=".;./wykobi;&quot;../common/shapelib-1.2.10&quot;"
+ PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;NOMINMAX;WIN32_LEAN_AND_MEAN;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_DEPRECATE;_SECURE_SCL=0;_HAS_ITERATOR_DEBUGGING=0;BOOST_DISABLE_ASSERTS;BOOST_ALL_NO_LIB"
+ RuntimeLibrary="0"
+ UsePrecompiledHeader="0"
+ WarningLevel="0"
+ Detect64BitPortabilityProblems="true"
+ DebugInformationFormat="3"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="kernel32.lib $(NoInherit)"
+ OutputFile="$(OutDir)\2005\$(ProjectName).exe"
+ LinkIncremental="1"
+ GenerateManifest="false"
+ GenerateDebugInformation="false"
+ SubSystem="1"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <Filter
+ Name="Source Files"
+ Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+ >
+ <File
+ RelativePath="..\common\shapelib-1.2.10\dbfopen.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\common\shapelib-1.2.10\shpopen.cpp"
+ >
+ </File>
+ <File
+ RelativePath=".\wykobi_check.cpp"
+ >
+ </File>
+ </Filter>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk