mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
15 lines
311 B
OCaml
15 lines
311 B
OCaml
|
|
(* don't set locale to avoid float_of_string problem *)
|
|
let locale = GtkMain.Main.init ~setlocale:false ()
|
|
|
|
let _ =
|
|
Arg.parse (Sim.common_options@Sitl.options)
|
|
(fun x -> Printf.fprintf stderr "Warning: Don't do anything with %s\n" x)
|
|
"Usage: "
|
|
|
|
|
|
module M = Sim.Make(Sitl.Make)
|
|
|
|
let _ =
|
|
M.main ()
|