Skip to content

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed
 

‎src/Makefile.win‎

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
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+
15
STDSUBDIRS = core ui legend raster composer widgets helpviewer
26
#providers plugins
37

4-
WINSUBDIRS = gui
8+
WINSUBDIRS = core legend raster composer \
9+
widgets/projectionselector gui
10+
11+
all: stdsubdirs guilib winsubdirs
512

6-
all: stdsubdirs winsubdirs
13+
guilib:
14+
$(MAKE) -C gui -f Makefile libqgis_gui.la
715

816
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
1022

1123
include ../Makefile.win.rules

0 commit comments

Comments
 (0)
Please sign in to comment.