Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
CMAKE_INSTALL_PREFIX             /path/to/install/vol-daos/
DAOS_INCLUDE_DIR                 /path/to/daos/install/include/
DAOS_LIBRARY                     /path/to/daos/install/lib64/libdaos.so
DAOS_UNS_LIBRARY                 /path/to/daos/install/lib64/libduns.so
BUILD_TESTING                    ON
BUILD_EXAMPLES                   ON
HDF5_VOL_TEST_ENABLE_ASYNC       ON

Once all those are set, press g to generate the configure.

Otherwise, one could use regular cmake on the command line:

Code Block
 cmake  -DCMAKE_INSTALL_PREFIX=/path/to/install/vol-daos/ \
        -DBUILD_TESTING=ON \
        -DHDF5_VOL_TEST_ENABLE_PART=ON \
        -DHDF5_VOL_TEST_ENABLE_PARALLEL=ON \
        -DDAOS_INCLUDE_DIR=/path/to/daos/install/include/ \
        -DDAOS_LIBRARY=/path/to/daos/install/lib64/libdaos.so \
        -DDAOS_UNS_LIBRARY=/path/to/daos/install/lib64/libduns.so \
        -DHDF5_VOL_TEST_ENABLE_ASYNC=ON \
        ..

Once all those are set, press g to generate the configure and finally to build:

Code Block
make -j8 install

...