f1b8ad4ee7
geometries directly inside a XML file by specifying a WKT text. Useful a lot for building legend images for layers or drawing fixed geometries in the map. An update of the main SConstruct and python bindings for this will follow. Be careful with this, as it's mainly alpha code.
34 lines
532 B
Makefile
34 lines
532 B
Makefile
pkglibdir = $(libdir)/mapnik/input
|
|
|
|
if HAVE_GEOS
|
|
|
|
pkglib_LTLIBRARIES = \
|
|
geos.la
|
|
|
|
geos_la_SOURCES = \
|
|
geos_datasource.cpp \
|
|
geos_datasource.hpp \
|
|
geos_featureset.cpp \
|
|
geos_featureset.hpp \
|
|
geos_converter.cpp \
|
|
geos_converter.hpp \
|
|
geos_feature_ptr.hpp
|
|
|
|
geos_la_LIBADD = \
|
|
${GEOS_LDFLAGS}
|
|
|
|
geos_la_CXXFLAGS = \
|
|
-Wall \
|
|
${PROFILING_CFLAGS} \
|
|
${TRACING_CFLAGS} \
|
|
${GEOS_CFLAGS} \
|
|
-I../../../include
|
|
|
|
geos_la_LDFLAGS = \
|
|
-module \
|
|
-avoid-version \
|
|
-shrext .input
|
|
|
|
endif
|
|
|
|
## File created by the gnome-build tools
|