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

« back to all changes in this revision

Viewing changes to src/providers/postgres/CMakeLists.txt

  • 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:
10
10
qgspostgresextentthread.cpp
11
11
)
12
12
 
13
 
IF(NOT WIN32)
14
 
    SET(PG_MOC_HDRS qgspostgresprovider.h)
15
 
ENDIF(NOT WIN32)
 
13
SET(PG_MOC_HDRS qgspostgresprovider.h)
 
14
 
16
15
 
17
16
########################################################
18
17
# Build
21
20
 
22
21
INCLUDE_DIRECTORIES (
23
22
  ../../core
24
 
  ../../gui
25
 
  ${CMAKE_CURRENT_BINARY_DIR}/../../ui
26
23
  ${POSTGRES_INCLUDE_DIR}
27
24
  ${GEOS_INCLUDE_DIR}
28
 
  ${GDAL_INCLUDE_DIR}
29
25
)
30
26
 
31
27
ADD_LIBRARY (postgresprovider MODULE ${PG_SRCS} ${PG_MOC_SRCS})
32
28
 
33
29
TARGET_LINK_LIBRARIES (postgresprovider
34
 
  ${QT_LIBRARIES}
35
30
  ${POSTGRES_LIBRARY}
36
 
  ${GDAL_LIBRARIES}
37
31
  qgis_core
38
32
)
39
33