1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
SUBDIRS=\
util
noinst_LTLIBRARIES = libgeom.la
INCLUDES = -I$(top_srcdir)/source/headers
## full inlined
# CoordinateSequenceFactory.cpp
libgeom_la_SOURCES = \
Coordinate.cpp \
CoordinateSequence.cpp \
CoordinateArraySequence.cpp \
CoordinateArraySequenceFactory.cpp \
Dimension.cpp \
Envelope.cpp \
Geometry.cpp \
GeometryList.cpp \
GeometryCollection.cpp \
GeometryComponentFilter.cpp \
GeometryFactory.cpp \
IntersectionMatrix.cpp \
LinearRing.cpp \
LineSegment.cpp \
LineString.cpp \
Location.cpp \
MultiLineString.cpp \
MultiPoint.cpp \
MultiPolygon.cpp \
Point.cpp \
Polygon.cpp \
PrecisionModel.cpp \
Triangle.cpp
libgeom_la_LIBADD = \
util/libgeomutil.la
|