Implemented extract_atom, updated docs, added some unit tests

This commit is contained in:
Karl Hammond
2022-09-22 19:16:15 -05:00
parent 2d81980de1
commit aff5200ded
3 changed files with 210 additions and 28 deletions

View File

@ -57,6 +57,10 @@ if(CMAKE_Fortran_COMPILER)
target_link_libraries(test_fortran_extract_global PRIVATE flammps lammps MPI::MPI_Fortran GTest::GTestMain)
add_test(NAME FortranExtractGlobal COMMAND test_fortran_extract_global)
add_executable(test_fortran_extract_atom wrap_extract_atom.cpp test_fortran_extract_atom.f90)
target_link_libraries(test_fortran_extract_atom PRIVATE flammps lammps MPI::MPI_Fortran GTest::GTestMain)
add_test(NAME FortranExtractAtom COMMAND test_fortran_extract_atom)
else()
message(STATUS "Skipping Tests for the LAMMPS Fortran Module: no Fortran compiler")
endif()