Skip to content
Snippets Groups Projects
Commit 3dbd1f0a authored by John Romein's avatar John Romein
Browse files

BugID: 225

do not cause compile errors on machines that do not have MPI
parent f4ee572f
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,7 @@
#include <lofar_config.h>
#if defined HAVE_MPI
#include <APS/ParameterSet.h>
#include <Common/lofar_complex.h>
#include <Common/Timer.h>
......@@ -516,3 +517,12 @@ int main(int argc, char **argv)
return retval;
}
#else // !defined HAVE_MPI
int main()
{
return 0;
}
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment