~ubuntu-branches/ubuntu/trusty/liblas/trusty-proposed

« back to all changes in this revision

Viewing changes to test/unit/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Francesco Paolo Lovergine
  • Date: 2014-01-05 17:00:29 UTC
  • mfrom: (7.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140105170029-ddtp0j63x5jvck2u
Tags: 1.7.0+dfsg-2
Fixed missing linking of system boost component.
(closes: #733282)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
if GDAL_IS_CONFIG
2
 
GDAL_CPPFLAGS = @GDAL_INC@ -DHAVE_GDAL=1
3
 
endif
4
 
 
5
 
if GEOTIFF_IS_CONFIG
6
 
GEOTIFF_CPPFLAGS = @GEOTIFF_INC@ -DHAVE_LIBGEOTIFF=1
7
 
endif
8
 
 
9
 
AM_CPPFLAGS = $(GEOTIFF_CPPFLAGS) $(GDAL_CPPFLAGS) -I../include -I../include/detail
10
 
 
11
 
 
12
 
INCLUDES = -I. -I../../include
13
 
 
14
 
TESTS = liblas_test
15
 
 
16
 
check_PROGRAMS = liblas_test
17
 
 
18
 
liblas_test_LDADD = \
19
 
        $(top_builddir)/src/liblas.la \
20
 
        $(NULL)
21
 
 
22
 
liblas_test_SOURCES = \
23
 
    common.cpp \
24
 
    guid_test.cpp \
25
 
    laserror_test.cpp \
26
 
    lasfile_test.cpp \
27
 
    lasheader_test.cpp \
28
 
    lasspatialreference_test.cpp \
29
 
    laspoint_test.cpp \
30
 
    lasreader_iterator_test.cpp \
31
 
    lasreader_test.cpp \
32
 
    lasvariablerecord_test.cpp \
33
 
    laswriter_test.cpp \
34
 
    liblas_test_suite.cpp
35