File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change
1
+ # We have to run first standard build system (stdsubdirs) which
2
+ # creates static libraries (.libs/libqgis_xxx.a)
3
+ # then we run win32 specific makefiles which generates DLL
4
+
1
5
STDSUBDIRS = core ui legend raster composer widgets helpviewer
2
6
#providers plugins
3
7
4
- WINSUBDIRS = gui
8
+ WINSUBDIRS = core legend raster composer \
9
+ widgets/projectionselector gui
10
+
11
+ all: stdsubdirs guilib winsubdirs
5
12
6
- all: stdsubdirs winsubdirs
13
+ guilib:
14
+ $(MAKE) -C gui -f Makefile libqgis_gui.la
7
15
8
16
install: all
9
- $(MAKE) -C gui -f Makefile.win install
17
+ @list='$(WINSUBDIRS)'; \
18
+ for subdir in $$list; do \
19
+ echo $$subdir ; \
20
+ $(MAKE) -C $$subdir -f Makefile.win install ; \
21
+ done
10
22
11
23
include ../Makefile.win.rules
You can’t perform that action at this time.
0 commit comments