Skip to content
Snippets Groups Projects
Commit d386ccf9 authored by Virgile Prevosto's avatar Virgile Prevosto Committed by Andre Maroneze
Browse files

[MdR] Make eva_info a proper Findlib subpackage of frama-c-markdown_report

parent f3a96b1d
No related branches found
No related tags found
No related merge requests found
......@@ -5,3 +5,8 @@ archive(byte) = "top/Markdown_report.cmo"
archive(native) = "top/Markdown_report.cmx"
plugin(native) = "top/Markdown_report.cmxs"
plugin(byte) = "top/Markdown_report.cmo"
package "eva_info" (
requires = "frama-c-markdown_report frama-c-eva"
plugin(native) = "top/eva_info.cmxs"
plugin(byte) = "top/eva_info.cmo"
)
......@@ -23,19 +23,8 @@
let load_eva_info () =
if not !Md_gen.Eva_info.loaded && Dynamic.is_loaded "frama-c-eva"
then begin
let eva_info = "top/eva_info.cmo" in
try
List.iter
(fun dir ->
let path = dir ^ "/" ^ eva_info in
if Sys.file_exists path then begin
Dynamic.load_module (dir ^ "/" ^ eva_info);
(* do not try to load it twice. *)
raise Exit
end)
Fc_config.plugin_dir;
Mdr_params.warning "Impossible to load Eva-specific operations"
with Exit -> ()
let eva_info = "frama-c-markdown_report.eva_info" in
Dynamic.load_packages [eva_info];
end
(* end *)
......
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