Skip to content

Commit

Permalink
win
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@4848 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
rblazek committed Feb 14, 2006
1 parent c434be4 commit 5f45bdd
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/providers/wms/Makefile.win
@@ -0,0 +1,30 @@
QGTOP=../../../

LDADD = $(PLUGIN_LIBS)

PROVIDER = .libs/wmsprovider.dll

all: objects $(PROVIDER)

objects:
$(MAKE) -f Makefile

$(PROVIDER): .libs/wmsprovider.a
$(CXX) -shared -o $@ \
-Wl,--export-all-symbols \
-Wl,--enable-auto-import \
-Wl,--whole-archive .libs/wmsprovider.a \
-Wl,--no-whole-archive \
$(CORE_A) $(GUI_A) $(CORE_A) \
$(RASTER_A) $(PROJSEL_A) $(LEGEND_A) \
$(GUI_A) $(CORE_A) $(COMPOSER_A) $(GUI_A) \
-lgdal -lgeos -lsqlite3 -lproj \
$(QT_LDADD) \
-lwsock32 -lmingw32
$(STRIP) $@

install: all
mkdir -p $(prefix)/lib/qgis/
$(INSTALL) -m 755 .libs/wmsprovider.dll $(prefix)/lib/qgis/wmsprovider.dll

include ../../../Makefile.win.rules

0 comments on commit 5f45bdd

Please sign in to comment.