-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
22 additions
and
7 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -4,13 +4,23 @@ using H5Zblosc | |
using H5Zbzip2 | ||
using H5Zlz4 | ||
using H5Zzstd | ||
using H5Zbitshuffle | ||
using MPI # needed to generate docs for parallel HDF5 API | ||
|
||
# Load extension packages | ||
const BloscExt = Base.get_extension(HDF5, :BloscExt) | ||
const bitshuffle_jll_ext = Base.get_extension(HDF5, :bitshuffle_jll_ext) | ||
const BloscExt = Base.get_extension(HDF5, :BloscExt) | ||
const CodecBzip2Ext = Base.get_extension(HDF5, :CodecBzip2Ext) | ||
const CodecLz4Ext = Base.get_extension(HDF5, :CodecLz4Ext) | ||
const CodecZstdExt = Base.get_extension(HDF5, :CodecZstdExt) | ||
|
||
DocMeta.setdocmeta!(HDF5, :DocTestSetup, :(using HDF5); recursive=true) | ||
|
||
makedocs(; | ||
sitename="HDF5.jl", | ||
modules=[HDF5, H5Zblosc, H5Zbzip2, H5Zlz4, H5Zzstd], | ||
modules=[HDF5, H5Zblosc, H5Zbzip2, H5Zlz4, H5Zzstd, H5Zbitshuffle, | ||
bitshuffle_jll_ext, BloscExt, CodecBzip2Ext, CodecLz4Ext, CodecZstdExt], | ||
authors="Mustafa Mohamad <[email protected]> and contributors", | ||
format=Documenter.HTML(; | ||
prettyurls=get(ENV, "CI", "false") == "true", | ||
|