Skip to content
Snippets Groups Projects
CMakeLists.txt 1.03 KiB
Newer Older
guj's avatar
guj committed
#------------------------------------------------------------------------------#
# Distributed under the OSI-approved Apache License, Version 2.0.  See
# accompanying file Copyright.txt for details.
#------------------------------------------------------------------------------#

#add_executable(hello_hdf5Writer_nompi helloHDF5Writer_nompi.cpp)
guj's avatar
guj committed
message("    HDF5:   ${HDF5_INCLUDE_DIRS}")
include_directories(${HDF5_INCLUDE_DIRS})
#target_link_libraries(hello_hdf5Writer_nompi adios2_nompi)
guj's avatar
guj committed

if(ADIOS_BUILD_TESTING)
guj's avatar
guj committed
  #add_test(
  #  NAME Example::hello::hdf5Writer_nompi
  #  COMMAND hello_hdf5Writer_nompi
  #)
guj's avatar
guj committed
endif()

if(ADIOS_USE_MPI)
  find_package(MPI COMPONENTS C REQUIRED)

  add_executable(hello_hdf5Writer helloHDF5Writer.cpp)
  target_link_libraries(hello_hdf5Writer adios2)
  target_include_directories(hello_hdf5Writer PRIVATE ${MPI_C_INCLUDE_PATH})
  target_link_libraries(hello_hdf5Writer adios2 ${MPI_C_LIBRARIES})

  if(ADIOS_BUILD_TESTING)
    add_test(NAME Example::hello::hdf5Writer COMMAND hello_hdf5Writer)
  endif()
endif()