Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
CMakeLists.txt 373 B
if(ADIOS2_HAVE_MPI)
  add_executable(helloBPWriterXML helloBPWriterXML.cpp)
  target_link_libraries(helloBPWriterXML MPI::MPI_C)
else()
  add_executable(helloBPWriterXML helloBPWriterXML_nompi.cpp)
endif()

target_link_libraries(helloBPWriterXML adios2)
target_compile_definitions(helloBPWriterXML PRIVATE
  -DDEFAULT_CONFIG=${CMAKE_CURRENT_SOURCE_DIR}/helloBPWriter.xml
)