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

« back to all changes in this revision

Viewing changes to src/providers/postgres/postgres.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 gui library - the app is built in a separate pro file
15
 
#
16
 
 
17
 
include(../../../settings.pro)
18
 
TARGET=postgresprovider
19
 
TEMPLATE = lib
20
 
#suffix debug to target if applicable
21
 
CONFIG(debug, debug|release){
22
 
  TARGET = $$member(TARGET, 0)-debug
23
 
}
24
 
#LIBS += $${GDALLIBADD}
25
 
LIBS += $${GEOSLIBADD}
26
 
LIBS += $${PROJLIBADD}
27
 
LIBS += $${POSTGRESLIBADD}
28
 
LIBS += $${QGISCORELIBADD}
29
 
LIBS += $${QGISGUILIBADD}
30
 
LIBS += $${QGISPROJECTIONSELECTORLIBADD}
31
 
DESTDIR=$${QGISPROVIDERDIR}
32
 
#QT += qt3support svg core gui xml network
33
 
QT += core gui qt3support xml
34
 
message("Building libs into $${DESTDIR}")
35
 
 
36
 
HEADERS += qgspostgresprovider.h \
37
 
           qgspostgrescountthread.h \
38
 
           qgspostgisbox2d.h \
39
 
           qgspostgisbox3d.h \
40
 
           qgspostgresextentthread.h \
41
 
           
42
 
 
43
 
SOURCES += qgspostgresprovider.cpp \
44
 
           qgspostgrescountthread.cpp \
45
 
           qgspostgisbox2d.cpp \
46
 
           qgspostgisbox3d.cpp \
47
 
           qgspostgresextentthread.cpp \