1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-07-31 11:47:06 +01:00

Make compile if HAVE_LIME=0

This commit is contained in:
u37294
2020-05-04 10:26:20 -07:00
parent ff53b231c8
commit 59c51d2c35
3 changed files with 6 additions and 3 deletions

View File

@@ -14,6 +14,7 @@ std::string filestem(const int l)
int main (int argc, char ** argv)
{
#ifdef HAVE_LIME
Grid_init(&argc,&argv);
int64_t threads = GridThread::GetThreads();
@@ -42,6 +43,6 @@ int main (int argc, char ** argv)
}
Grid_finalize();
#endif
return EXIT_SUCCESS;
}