mirror of
https://github.com/HDFGroup/hdf5.git
synced 2026-09-26 04:09:39 +03:00
FFM build requires Java 25, Jextract 25. Generates FFM bindings during configure. JNI is default when the requirements are not met or can be forced. Presets added for maven and FFM - JNI is default selection. Enhanced Maven options will work with either JNI or FFM New Workflows for testing and maven uploads. Extensive documentation changes for java.
23 lines
663 B
CMake
23 lines
663 B
CMake
#-----------------------------------------------------------------------------
|
|
# Define Sources, one file per application
|
|
#-----------------------------------------------------------------------------
|
|
set (HDF_JAVA_EXAMPLES
|
|
HDF5FileCreate.java
|
|
HDF5GroupCreate.java
|
|
HDF5DatasetCreate.java
|
|
HDF5AttributeCreate.java
|
|
HDF5DatasetRead.java
|
|
HDF5GroupDatasetCreate.java
|
|
HDF5SubsetSelect.java
|
|
HDF5GroupAbsoluteRelativeCreate.java
|
|
)
|
|
if (H5_LIBVER_DIR EQUAL 110)
|
|
set (HDF_JAVA_EXAMPLES ${HDF_JAVA_EXAMPLES}
|
|
110/HDF5FileStructure.java
|
|
)
|
|
else ()
|
|
set (HDF_JAVA_EXAMPLES ${HDF_JAVA_EXAMPLES}
|
|
HDF5FileStructure.java
|
|
)
|
|
endif ()
|