Skip to content

Commit

Permalink
Windows makefile for gps importer
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5630 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
gsherman committed Jul 24, 2006
1 parent 8da5a1b commit b74733c
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/plugins/gps_importer/Makefile.win
@@ -0,0 +1,28 @@
QGTOP=../../../

OBJECTS = $(wildcard *.o)

PLUGIN = .libs/gpsimporterplugin.dll

all: objects $(PLUGIN)

objects:
$(MAKE) -f Makefile

$(PLUGIN): $(OBJECTS)
$(CXX) -shared -o $@ \
-Wl,--export-all-symbols \
-Wl,--enable-auto-import \
-Wl,--whole-archive $(OBJECTS) \
-Wl,--no-whole-archive \
-L ../../providers/gpx/.libs \
$(PLUGIN_LIBS) \
$(GSL_LIBS)
$(STRIP) $@

# ../../providers/grass/.libs/libqgisgrass.a \

install: all
$(INSTALL) -m 755 $(PLUGIN) $(prefix)/lib/qgis/gpsimporterplugin.dll

include $(QGTOP)/Makefile.win.rules

0 comments on commit b74733c

Please sign in to comment.