highfive/2.9.0

HighFive is a modern header-only C++11 friendly interface for libhdf5.
Recipe info
Boost Software License 1.0
2024-01-31

Available packages
Header Only

Install
Add the following line to your conanfile.txt:
[requires]
highfive/2.9.0

Using highfive

Note

If you are a new Conan user, we recommend reading the how to consume packages tutorial.

If you need additional assistance, please ask a question in the Conan Center Index repository.

Simplest use case consuming this recipe and assuming CMake as your local build tool:

[requires]
highfive/2.9.0
[generators]
CMakeDeps
CMakeToolchain
[layout]
cmake_layout
from conan import ConanFile
from conan.tools.cmake import cmake_layout


class ExampleRecipe(ConanFile):
    settings = "os", "compiler", "build_type", "arch"
    generators = "CMakeDeps", "CMakeToolchain"

    def requirements(self):
        self.requires("highfive/2.9.0")

    def layout(self):
        cmake_layout(self)

Now, you can run this Conan command to locally install (and build if necessary) this recipe and its dependencies (if any):

$ conan install conanfile.txt --build=missing

Useful information to take into account to consume this library:


These are the main declared targets:

  • CMake package name(s): HighFive
  • CMake target name(s): HighFive
  • pkg-config file name(s): highfive.pc

A simple use case using the CMake file name and the global target:

# ...
find_package(HighFive REQUIRED)
# ...
target_link_libraries(YOUR_TARGET HighFive)

These are all the available headers. Some of these ones might be non-public; make sure of it by visiting the highfive homepage listed above:

#include "highfive/H5Attribute.hpp"
#include "highfive/H5DataSet.hpp"
#include "highfive/H5DataSpace.hpp"
#include "highfive/H5DataType.hpp"
#include "highfive/H5Easy.hpp"
#include "highfive/H5Exception.hpp"
#include "highfive/H5File.hpp"
#include "highfive/H5FileDriver.hpp"
#include "highfive/H5Group.hpp"
#include "highfive/H5Object.hpp"
#include "highfive/H5PropertyList.hpp"
#include "highfive/H5Reference.hpp"
#include "highfive/H5Selection.hpp"
#include "highfive/H5Utility.hpp"
#include "highfive/H5Version.hpp"
#include "highfive/bits/H5Annotate_traits.hpp"
#include "highfive/bits/H5Annotate_traits_misc.hpp"
#include "highfive/bits/H5Attribute_misc.hpp"
#include "highfive/bits/H5Converter_misc.hpp"
#include "highfive/bits/H5DataSet_misc.hpp"
#include "highfive/bits/H5DataType_misc.hpp"
#include "highfive/bits/H5Dataspace_misc.hpp"
#include "highfive/bits/H5Exception_misc.hpp"
#include "highfive/bits/H5FileDriver_misc.hpp"
#include "highfive/bits/H5File_misc.hpp"
#include "highfive/bits/H5Friends.hpp"
#include "highfive/bits/H5Inspector_decl.hpp"
#include "highfive/bits/H5Inspector_misc.hpp"
#include "highfive/bits/H5Iterables_misc.hpp"
#include "highfive/bits/H5Node_traits.hpp"
#include "highfive/bits/H5Node_traits_misc.hpp"
#include "highfive/bits/H5Object_misc.hpp"
#include "highfive/bits/H5Path_traits.hpp"
#include "highfive/bits/H5Path_traits_misc.hpp"
#include "highfive/bits/H5PropertyList_misc.hpp"
#include "highfive/bits/H5ReadWrite_misc.hpp"
#include "highfive/bits/H5Reference_misc.hpp"
#include "highfive/bits/H5Selection_misc.hpp"
#include "highfive/bits/H5Slice_traits.hpp"
#include "highfive/bits/H5Slice_traits_misc.hpp"
#include "highfive/bits/H5Utils.hpp"
#include "highfive/bits/H5_definitions.hpp"
#include "highfive/bits/h5_wrapper.hpp"
#include "highfive/bits/h5a_wrapper.hpp"
#include "highfive/bits/h5d_wrapper.hpp"
#include "highfive/bits/h5e_wrapper.hpp"
#include "highfive/bits/h5f_wrapper.hpp"
#include "highfive/bits/h5g_wrapper.hpp"
#include "highfive/bits/h5i_wrapper.hpp"
#include "highfive/bits/h5l_wrapper.hpp"
#include "highfive/bits/h5o_wrapper.hpp"
#include "highfive/bits/h5p_wrapper.hpp"
#include "highfive/bits/h5r_wrapper.hpp"
#include "highfive/bits/h5s_wrapper.hpp"
#include "highfive/bits/h5t_wrapper.hpp"
#include "highfive/bits/string_padding.hpp"
#include "highfive/boost.hpp"
#include "highfive/eigen.hpp"
#include "highfive/h5easy_bits/H5Easy_Eigen.hpp"
#include "highfive/h5easy_bits/H5Easy_misc.hpp"
#include "highfive/h5easy_bits/H5Easy_opencv.hpp"
#include "highfive/h5easy_bits/H5Easy_public.hpp"
#include "highfive/h5easy_bits/H5Easy_scalar.hpp"
#include "highfive/h5easy_bits/H5Easy_vector.hpp"
#include "highfive/h5easy_bits/H5Easy_xtensor.hpp"
#include "highfive/half_float.hpp"
#include "highfive/highfive.hpp"