1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-06-24 09:42:02 +01:00

first implementation of HDF5 format

This commit is contained in:
2015-10-01 00:13:34 +01:00
committed by Antonin Portelli
parent c672c33189
commit 5e3247697d
17 changed files with 932 additions and 70 deletions

View File

@ -58,10 +58,14 @@ AC_ARG_WITH([LatCore],
[AM_LDFLAGS="$AM_LDFLAGS -L$with_LatCore/lib"],
[]
)
CFLAGS="$AM_CFLAGS $CFLAGS"
CXXFLAGS="$AM_CXXFLAGS $CXXFLAGS"
LDFLAGS="$AM_LDFLAGS $LDFLAGS"
AX_LIB_HDF5()
if test x$with_hdf5 = xno; then
AC_MSG_ERROR([HDF5 library not found])
fi
CFLAGS="$AM_CFLAGS $HDF5_CFLAGS $CFLAGS"
CXXFLAGS="$AM_CXXFLAGS $HDF5_CPPFLAGS $CXXFLAGS"
LDFLAGS="$AM_LDFLAGS $HDF5_LDFLAGS $LDFLAGS"
LIBS="$LIBS $HDF5_LIBS -lhdf5_cpp"
# Get compilers informations
AX_COMPILER_VENDOR