continued ork on extract_compute unit tests

This commit is contained in:
Karl Hammond
2022-09-24 12:04:27 -05:00
parent 69627eee8d
commit 26e269aacd
4 changed files with 25 additions and 98 deletions

View File

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