forked from OCamlPro/socaml-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ocp-build.root
74 lines (53 loc) · 1.74 KB
/
ocp-build.root
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
(*************************************)
(* Never edit options files while *)
(* the program is running *)
(*************************************)
(* SECTION : Header *)
(* These options must be read first *)
(*************************************)
(* If set, use content digest change to trigger recompilation *)
(* If not set, use timestamps + inode numbers *)
digest = None
(* Verbosity for debugging *)
(* 0 = almost no output, *)
(* 1 = shortened output, *)
(* 2 = commands, etc. *)
verbosity = None
(* Maximal number of jobs started in parallel (0 = auto-detect) *)
njobs = None
(* If set, always scan for new .ocp files *)
autoscan = None
(* If set, compile in bytecode *)
bytecode = None
(* If set, compile in native code *)
native = None
(* List of directories where to *)
(* look for META files *)
meta_dirnames = [
]
(* An alternative root directory for installation *)
install_destdir = None
(* where programs should be installed *)
install_bin = None
(* where libraries should be installed *)
install_lib = None
(* where multi-arch data should be installed *)
install_data = None
(* where documentation files should be installed *)
install_doc = None
(* directory containing ocaml libraries *)
ocamllib = None
(* If set, use ocamlfind to locate *)
(* META files *)
use_ocamlfind = true
(* The version of ocp-build used to save this file *)
ocpbuild_version = "1.99.6-beta"
(* All external (absolute) directories to be included in this project *)
project_external_dirs = [
]
(* List of configuration files for this project *)
files = [
"/home/pat/devel/ocaml/dataanalysis/analysis.ocp";
"/home/pat/devel/ocaml/dataanalysis/test/tests.ocp";
"/home/pat/devel/ocaml/dataanalysis/src/driver/programs.ocp";
]