File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments