cmake/Tests/FindMPI/Test/main.c

8 lines
98 B

#include <mpi.h>
int main(int argc, char** argv)
{
MPI_Init(&argc, &argv);
MPI_Finalize();
}