Skip to content

Commit 5f45bdd

Browse files
author
rblazek
committedFeb 14, 2006
win
git-svn-id: http://svn.osgeo.org/qgis/trunk@4848 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent c434be4 commit 5f45bdd

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
 

‎src/providers/wms/Makefile.win

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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_A) $(CORE_A) \
19+
$(RASTER_A) $(PROJSEL_A) $(LEGEND_A) \
20+
$(GUI_A) $(CORE_A) $(COMPOSER_A) $(GUI_A) \
21+
-lgdal -lgeos -lsqlite3 -lproj \
22+
$(QT_LDADD) \
23+
-lwsock32 -lmingw32
24+
$(STRIP) $@
25+
26+
install: all
27+
mkdir -p $(prefix)/lib/qgis/
28+
$(INSTALL) -m 755 .libs/wmsprovider.dll $(prefix)/lib/qgis/wmsprovider.dll
29+
30+
include ../../../Makefile.win.rules

0 commit comments

Comments
 (0)
Please sign in to comment.