Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

include python bindings and zlib format in vc build #19

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion gdal/frmts/makefile.vc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ EXTRAFLAGS = -DFRMT_ceos -DFRMT_aigrid -DFRMT_elas -DFRMT_hfa -DFRMT_gtiff\
-DFRMT_adrg -DFRMT_coasp -DFRMT_tsx -DFRMT_blx -DFRMT_til \
-DFRMT_r -DFRMT_northwood -DFRMT_saga -DFRMT_xyz -DFRMT_hf2 \
-DFRMT_kmlsuperoverlay -DFRMT_ozi -DFRMT_ctg -DFRMT_e00grid \
-DFRMT_zmap -DFRMT_ngsgeoid -DFRMT_pdf -DFRMT_iris -DFRMT_map
-DFRMT_zmap -DFRMT_ngsgeoid -DFRMT_pdf -DFRMT_iris -DFRMT_map \
-DFRMT_zlib

MOREEXTRA =

Expand Down
7 changes: 6 additions & 1 deletion gdal/makefile.vc
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ LIBOBJ = port\*.obj gcore\*.obj alg\*.obj frmts\o\*.obj $(OGR_OBJ) $(VB6_OBJ)
DISTDIR = gdal_$(VERSION)

default: port_dir ogr_dir core_dir frmts_dir $(VB6_TARGET) $(GDAL_DLL) \
plugin_dir apps_dir
plugin_dir apps_dir python

staticlib:
if exist gdal.lib del gdal.lib
Expand Down Expand Up @@ -138,6 +138,11 @@ apps_dir:
$(MAKE) /f makefile.vc
cd ..

python:
cd swig
$(MAKE) /f makefile.vc python
cd ..

vb6_dir:
cd vb6
$(MAKE) /f makefile.vc
Expand Down