~ubuntu-branches/ubuntu/saucy/qgis/saucy

« back to all changes in this revision

Viewing changes to src/plugins/gps_importer/gps_importer.pro

  • 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
 
#################################################################
2
 
#
3
 
#         QMAKE Project File for Quantum GIS 
4
 
5
 
#                   Tim Sutton 2006
6
 
#
7
 
# NOTE: Do not place any hard coded external paths in this file
8
 
#       all libs and includes should be specified in settings.pro
9
 
#       in the top level qgis directory.
10
 
11
 
#################################################################
12
 
 
13
 
#
14
 
# This file builds the gps importer plugin
15
 
#
16
 
 
17
 
include(../../../settings.pro)
18
 
TARGET=gpsgplugin
19
 
TEMPLATE = lib
20
 
#suffix debug to target if applicable
21
 
CONFIG(debug, debug|release){
22
 
  TARGET = $$member(TARGET, 0)-debug
23
 
}
24
 
 
25
 
# This is a hack (thanks freddy!) because many plugins use the
26
 
# same class names and file names we need to force the compiler
27
 
# to create separate object files for them.
28
 
MYDIRNAME=gps_importer
29
 
MOC_DIR = $${OBJDIR}/moc/plugins/$${MYDIRNAME}
30
 
UI_DIR = $${OBJDIR}/ui/plugins/$${MYDIRNAME}
31
 
win32:OBJECTS_DIR = $${OBJDIR}/o/win32/plugins/$${MYDIRNAME}
32
 
INCLUDEPATH += $${OBJDIR}/ui 
33
 
INCLUDEPATH += .
34
 
 
35
 
LIBS += $${QGISCORELIBADD}
36
 
LIBS += $${QGISGUILIBADD}
37
 
LIBS += $${POSTGRESLIBADD}
38
 
 
39
 
 
40
 
DESTDIR=$${QGISPLUGINDIR}
41
 
QT += qt3support svg core gui xml network
42
 
 
43
 
message("Building libs into $${DESTDIR}")
44
 
 
45
 
 
46
 
# Input
47
 
RESOURCES += qgsgps_plugin.qrc
48
 
 
49
 
FORMS += qgsgpspluginguibase.ui \
50
 
              qgsgpsdevicedialogbase.ui
51
 
 
52
 
HEADERS +=    qgsgpsplugin.h \
53
 
              qgsbabelformat.h \
54
 
              qgsgpsdevice.h\
55
 
              qgsbabelformat.h \
56
 
              qgsgpsplugingui.h \
57
 
              qgsgpsdevicedialog.h
58
 
SOURCES +=    qgsgpsplugin.cpp \
59
 
              qgsgpsdevice.cpp \
60
 
              qgsbabelformat.cpp \
61
 
              qgsgpsplugingui.cpp \
62
 
              qgsgpsdevicedialog.cpp 
63
 
 
64