1#
2#
3# This file is part of project GEOS (http://trac.osgeo.org/geos/)
4#
5prefix=@prefix@
6top_srcdir=@top_srcdir@
7top_builddir=@top_builddir@
8
9check_PROGRAMS = \
10	memleak_mp_prep \
11	GEOSPreparedContainsPerfTest \
12	IntersectionPerfTest \
13	UnaryOpPerfTest
14
15LIBS = $(top_builddir)/capi/libgeos_c.la
16AM_CPPFLAGS = -I$(top_builddir)/capi -I$(top_srcdir)/include
17
18memleak_mp_prep_SOURCES = memleak_mp_prep.c
19memleak_mp_prep_LDADD = $(LIBS)
20
21GEOSPreparedContainsPerfTest_SOURCES = GEOSPreparedContainsPerfTest.cpp
22GEOSPreparedContainsPerfTest_LDADD = $(top_builddir)/src/libgeos.la
23
24IntersectionPerfTest_SOURCES = IntersectionPerfTest.cpp
25IntersectionPerfTest_LDADD = $(top_builddir)/src/libgeos.la
26
27UnaryOpPerfTest_SOURCES = UnaryOpPerfTest.cpp
28UnaryOpPerfTest_LDADD = $(top_builddir)/src/libgeos.la
29
30EXTRA_DIST = CMakeLists.txt
31