~ubuntu-branches/ubuntu/trusty/qgis/trusty

« back to all changes in this revision

Viewing changes to src/composer/composer.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
 
include(../ui/ui.pro)
19
 
TEMPLATE=lib
20
 
TARGET=qgis_composer
21
 
#suffix debug to target if applicable
22
 
CONFIG(debug, debug|release){
23
 
  TARGET = $$member(TARGET, 0)-debug
24
 
}
25
 
LIBS += $${GDALLIBADD}
26
 
LIBS += $${QGISCORELIBADD}
27
 
message("QGIS Core Lib: $${QGISCORELIBADD}")
28
 
message("LIBS: $${LIBS}")
29
 
DESTDIR=$${QGISLIBDIR}
30
 
#leave the next line here - it clears the Qt defines
31
 
QT =
32
 
QT += qt3support svg core gui xml
33
 
message("Building libs into $${DESTDIR}")
34
 
 
35
 
HEADERS = qgscomposer.h \
36
 
                qgscomposeritem.h       \
37
 
                qgscomposerlabel.h      \
38
 
                qgscomposerpicture.h    \
39
 
                qgscomposermap.h        \
40
 
                qgscomposerscalebar.h   \
41
 
                qgscomposervectorlegend.h \
42
 
                qgscomposerview.h       \
43
 
                qgscomposition.h                                        
44
 
 
45
 
SOURCES =  qgscomposer.cpp \
46
 
                qgscomposeritem.cpp            \
47
 
                qgscomposerlabel.cpp           \
48
 
                qgscomposerpicture.cpp         \
49
 
                qgscomposermap.cpp             \
50
 
                qgscomposerscalebar.cpp        \
51
 
                qgscomposervectorlegend.cpp    \
52
 
                qgscomposerview.cpp            \
53
 
                qgscomposition.cpp                                      
54