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:
12
configure.ac
12
configure.ac
@ -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
|
||||
|
Reference in New Issue
Block a user