Skip to content
Snippets Groups Projects

HDF5 minimal example

Merged Tobias Meisel requested to merge without_odds into main
6 files
+ 2
369
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 3.0.0)
project(mpitest VERSION 0.1.0)
find_package(MPI REQUIRED)
find_package(HDF5 REQUIRED)
add_executable(mpitest hdf5.cpp)
target_link_libraries(mpitest
add_executable(hdf5_minimal hdf5.cpp)
target_link_libraries(hdf5_minimal
PRIVATE
MPI::MPI_CXX
/usr/lib/libhdf5.so )
Loading