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

« back to all changes in this revision

Viewing changes to src/providers/wms/Makefile.win

  • 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
 
QGTOP=../../../
2
 
 
3
 
LDADD = $(PLUGIN_LIBS) 
4
 
 
5
 
PROVIDER = .libs/wmsprovider.dll
6
 
 
7
 
all: objects $(PROVIDER)
8
 
 
9
 
objects:
10
 
        $(MAKE) -f Makefile
11
 
 
12
 
$(PROVIDER): .libs/wmsprovider.a
13
 
        $(CXX) -shared -o $@ \
14
 
                -Wl,--export-all-symbols \
15
 
                -Wl,--enable-auto-import \
16
 
                -Wl,--whole-archive .libs/wmsprovider.a \
17
 
                -Wl,--no-whole-archive \
18
 
                        $(CORE_A) $(GUI_DLL) \
19
 
                        -lgdal -lgeos -lsqlite3 -lproj $(PG_LIB) \
20
 
                        $(QT_LDADD) \
21
 
                        -lwsock32 -lmingw32
22
 
        $(STRIP) $@ 
23
 
 
24
 
install: all
25
 
        mkdir -p $(prefix)/lib/qgis/
26
 
        $(INSTALL) -m 755 .libs/wmsprovider.dll $(prefix)/lib/qgis/wmsprovider.dll
27
 
 
28
 
include ../../../Makefile.win.rules