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

« back to all changes in this revision

Viewing changes to src/plugins/geoprocessing/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:
25
25
 
26
26
INCLUDE_DIRECTORIES(
27
27
     ${CMAKE_CURRENT_BINARY_DIR}
28
 
     ../../core ../../raster ../../renderer ../../core/symbology
 
28
     ../../core ../../core/raster ../../core/renderer ../../core/symbology
29
29
     ../../gui
30
 
     ${CMAKE_CURRENT_BINARY_DIR}/../../ui
31
30
     ..
32
31
     ${POSTGRES_INCLUDE_DIR}
33
 
     ${GDAL_INCLUDE_DIR}
34
 
     ${PROJ_INCLUDE_DIR}
35
 
     ${GEOS_INCLUDE_DIR}
36
32
)
37
33
 
38
34
TARGET_LINK_LIBRARIES(pggeoprocessingplugin
39
35
  ${POSTGRES_LIBRARY}
40
 
  ${GDAL_LIBRARIES}
41
 
  ${PROJ_LIBRARY}
42
 
  ${GEOS_LIBRARY}
43
36
  qgis_core
 
37
  qgis_gui
44
38
)
45
39
 
46
40