Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • mosaic/software/parallel-computing/openfpm/openfpm_io
  • argupta/openfpm_io
2 results
Show changes
Commits on Source (3)
......@@ -92,10 +92,10 @@ if (PETSC_FOUND)
target_link_libraries(io ${PETSC_LIBRARIES})
endif()
# Request that particles be built with -std=c++11
# Request that particles be built with -std=c++17
# As this is a public compile feature anything that links to particles
# will also build with -std=c++11
target_compile_features(io PUBLIC cxx_std_11)
# will also build with -std=c++17
target_compile_features(io PUBLIC cxx_std_17)
target_link_libraries(io ${MPI_C_LIBRARIES})
target_link_libraries(io ${MPI_CXX_LIBRARIES})
......