~ubuntu-branches/ubuntu/wily/qgis/wily

« back to all changes in this revision

Viewing changes to src/providers/gpx/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Johan Van de Wauw
  • Date: 2010-07-11 20:23:24 UTC
  • mfrom: (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100711202324-5ktghxa7hracohmr
Tags: 1.4.0+12730-3ubuntu1
* Merge from Debian unstable (LP: #540941).
* Fix compilation issues with QT 4.7
* Add build-depends on libqt4-webkit-dev 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
## $Id: Makefile.am 5315 2006-04-19 16:23:02Z mhugent $
2
 
 
3
 
if HAVE_EXPAT
4
 
 
5
 
INCLUDES = -I../../core -I../../gui
6
 
 
7
 
plugindir = ${pkglibdir}
8
 
plugin_LTLIBRARIES = gpxprovider.la 
9
 
 
10
 
gpxprovider_la_SOURCES = qgsgpxprovider.cpp             \
11
 
        gpsdata.cpp
12
 
 
13
 
 
14
 
gpxprovider_la_LIBADD = $(QT_LDADD) $(GEOS_LDADD) ../../core/libqgis_core.la -lexpat
15
 
gpxprovider_la_LDFLAGS = -avoid-version -module
16
 
gpxprovider_la_CXXFLAGS = $(EXTRA_CXXFLAGS) $(QT_CXXFLAGS) $(DEBUG_QGIS) $(GEOS_CFLAGS) $(GDAL_CFLAGS)
17
 
 
18
 
EXTRA_DIST = qgsgpxprovider.h gpsdata.h
19
 
 
20
 
endif