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

« back to all changes in this revision

Viewing changes to src/providers/memory/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:
 
1
 
 
2
SET (MEMORY_SRCS qgsmemoryprovider.cpp)
 
3
 
 
4
INCLUDE_DIRECTORIES(
 
5
  .
 
6
  ../../core ../../core/spatialindex
 
7
  ${GEOS_INCLUDE_DIR}
 
8
)
 
9
 
 
10
ADD_LIBRARY(memoryprovider MODULE ${MEMORY_SRCS})
 
11
 
 
12
TARGET_LINK_LIBRARIES(memoryprovider
 
13
  qgis_core
 
14
)
 
15
 
 
16
 
 
17
INSTALL (TARGETS memoryprovider
 
18
  RUNTIME DESTINATION ${QGIS_PLUGIN_DIR}
 
19
  LIBRARY DESTINATION ${QGIS_PLUGIN_DIR})