forked from OSGeo/gdal
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
/vsizip/: add read support for Deflate64 (fixes OSGeo#7013)
- Loading branch information
Showing
17 changed files
with
2,674 additions
and
226 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
add_library( | ||
infback9 OBJECT | ||
infback9.c | ||
inftree9.c | ||
minified_zutil.c) | ||
set_property(TARGET infback9 PROPERTY POSITION_INDEPENDENT_CODE ${GDAL_OBJECT_LIBRARIES_POSITION_INDEPENDENT_CODE}) | ||
target_sources(${GDAL_LIB_TARGET_NAME} PRIVATE $<TARGET_OBJECTS:infback9>) | ||
target_compile_options(infback9 PRIVATE ${GDAL_C_WARNING_FLAGS}) | ||
if (MSVC) | ||
target_compile_options(infback9 PRIVATE ${GDAL_SOFTWARNFLAGS} /wd4131) | ||
endif () | ||
|
||
include(GdalDriverHelper) | ||
if (GDAL_USE_ZLIB_INTERNAL) | ||
gdal_add_vendored_lib(infback9 libz) | ||
else() | ||
gdal_target_link_libraries(infback9 PRIVATE ZLIB::ZLIB) | ||
endif () |
Oops, something went wrong.