From feef406709dc81571c6496c045147d62979dba98 Mon Sep 17 00:00:00 2001 From: Lori Cooper Date: Thu, 30 Nov 2023 15:44:57 -0600 Subject: [PATCH] Update how_to_change_hdf4_make_build_options.md --- .../hdf4-docs/how_to_change_hdf4_make_build_options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/hdf4-docs/how_to_change_hdf4_make_build_options.md b/documentation/hdf4-docs/how_to_change_hdf4_make_build_options.md index 2db7b182..21e35242 100644 --- a/documentation/hdf4-docs/how_to_change_hdf4_make_build_options.md +++ b/documentation/hdf4-docs/how_to_change_hdf4_make_build_options.md @@ -31,7 +31,7 @@ There are numerous CMake options available to users, many of which correspond di | Option | Configure | Cmake | | --- | --- | --- | | Build shared libraries | --enable-shared | `set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DBUILD_SHARED_LIBS:BOOL=ON")` | -| Build HDF4 Fortran library | --enable-fortran | `set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF4_BUILD_FORTRAN:BOOL=ON") | +| Build HDF4 Fortran library | --enable-fortran | `set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF4_BUILD_FORTRAN:BOOL=ON")` | | Disable ZLIB filter | --with-zlib | `set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF4_ENABLE_Z_LIB_SUPPORT:BOOL=OFF")` | | Disable SZIP filter | --with-szlib | `set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF4_ENABLE_SZIP_SUPPORT:BOOL=OFF")`
`set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF4_ENABLE_SZIP_ENCODING:BOOL=OFF")` | | Build HDF4 Java library | --enable-java | `set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF4_BUILD_JAVA:BOOL=ON")`
Also specify the location of Java in the JAVA_HOME environment variable. |