Skip to content
Snippets Groups Projects
Commit 10d458db authored by Tom Fischer's avatar Tom Fischer
Browse files

Merge pull request #748 from endJunction/InitLis

[A] Initialize lis.
parents 9e66d670 97ef42a2
No related branches found
No related tags found
No related merge requests found
......@@ -60,6 +60,10 @@ int main(int argc, char *argv[])
cmd.add(project_arg);
cmd.parse(argc, argv);
#ifdef USE_LIS
lis_initialize(&argc, &argv);
#endif
// Project's configuration
ConfigTree project_config;
......@@ -96,5 +100,9 @@ int main(int argc, char *argv[])
delete logog_cout;
LOGOG_SHUTDOWN();
#ifdef USE_LIS
lis_finalize();
#endif
return 0;
}
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