]> matita.cs.unibo.it Git - helm.git/blob - matita/components/binaries/probe/options.ml
24608872780b3f5615b1d4d46e73c55bfdba58a1
[helm.git] / matita / components / binaries / probe / options.ml
1 (*
2     ||M||  This file is part of HELM, an Hypertextual, Electronic        
3     ||A||  Library of Mathematics, developed at the Computer Science     
4     ||T||  Department, University of Bologna, Italy.                     
5     ||I||                                                                
6     ||T||  HELM is free software; you can redistribute it and/or         
7     ||A||  modify it under the terms of the GNU General Public License   
8     \   /  version 2 or (at your option) any later version.      
9      \ /   This software is distributed as is, NO WARRANTY.     
10       V_______________________________________________________________ *)
11
12 module US = NUri.UriSet
13
14 let default_objs = US.empty
15
16 let default_srcs = US.empty
17
18 let default_exclude = []
19
20 let default_net = 0
21
22 let objs = ref default_objs
23
24 let srcs = ref default_srcs
25
26 let exclude = ref default_exclude
27
28 let net = ref default_net
29
30 let no_devel = ref true
31
32 let clear () =
33    objs := default_objs; srcs := default_srcs;
34    exclude := default_exclude; net := default_net