Skip to content
Snippets Groups Projects
CMakeLists.txt 595 B
Newer Older
#------------------------------------------------------------------------------#
# Distributed under the OSI-approved Apache License, Version 2.0.  See
# accompanying file Copyright.txt for details.
#------------------------------------------------------------------------------#

add_executable(globalArray_write globalArray_write.cpp)
target_link_libraries(globalArray_write adios2)
  find_package(MPI COMPONENTS C REQUIRED)
  target_include_directories(globalArray_write PRIVATE ${MPI_C_INCLUDE_PATH})
  target_link_libraries(globalArray_write ${MPI_C_LIBRARIES})
endif()