File tree 1 file changed +11
-6
lines changed
1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change 2
2
# creates static libraries (.libs/libqgis_xxx.a)
3
3
# then we run win32 specific makefiles which generates DLL
4
4
5
+ all: stdsubdirs guilib winsubdirs
6
+
7
+ include ../Makefile.win.rules
8
+
5
9
STDSUBDIRS = core ui legend raster composer widgets helpviewer
6
10
#providers plugins
7
11
8
12
WINSUBDIRS = core legend raster composer \
9
13
widgets/projectionselector gui \
10
14
providers/ogr \
11
- providers/grass \
12
15
providers/wms \
13
- providers/postgres \
14
16
providers/gpx \
15
17
providers/delimitedtext \
16
- plugins/grass \
17
18
plugins/north_arrow \
18
19
plugins/copyright_label \
19
20
plugins/geoprocessing \
@@ -24,8 +25,13 @@ WINSUBDIRS = core legend raster composer \
24
25
plugins/gps_importer \
25
26
plugins/spit
26
27
27
-
28
- all: stdsubdirs guilib winsubdirs
28
+ ifneq ($(GRASS_BASE),)
29
+ WINSUBDIRS += providers/grass plugins/grass
30
+ endif
31
+
32
+ ifneq ($(PG_LIB),)
33
+ WINSUBDIRS += providers/postgres
34
+ endif
29
35
30
36
guilib:
31
37
$(MAKE) -C gui -f Makefile libqgis_gui.la
@@ -37,4 +43,3 @@ install: all
37
43
$(MAKE) -C $$subdir -f Makefile.win install || exit 1 ; \
38
44
done
39
45
40
- include ../Makefile.win.rules
You can’t perform that action at this time.
0 commit comments