mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 19:25:28 -05:00
oasis files
This commit is contained in:
parent
7289adf13d
commit
ee5c5340af
7 changed files with 69 additions and 15 deletions
8
_tags
8
_tags
|
|
@ -1,5 +1,5 @@
|
||||||
# OASIS_START
|
# OASIS_START
|
||||||
# DO NOT EDIT (digest: df66284577d93287963c0c06e567cf78)
|
# DO NOT EDIT (digest: 356c5881cb77df7fd532a71e15afb806)
|
||||||
# Ignore VCS directories, you can use the same kind of rule outside
|
# Ignore VCS directories, you can use the same kind of rule outside
|
||||||
# OASIS_START/STOP if you want to exclude directories that contains
|
# OASIS_START/STOP if you want to exclude directories that contains
|
||||||
# useless stuff for the build process
|
# useless stuff for the build process
|
||||||
|
|
@ -44,9 +44,9 @@
|
||||||
"misc/absSet.cmx": for-pack(Containers_misc)
|
"misc/absSet.cmx": for-pack(Containers_misc)
|
||||||
"misc/CSM.cmx": for-pack(Containers_misc)
|
"misc/CSM.cmx": for-pack(Containers_misc)
|
||||||
"misc/actionMan.cmx": for-pack(Containers_misc)
|
"misc/actionMan.cmx": for-pack(Containers_misc)
|
||||||
"misc/qCheck.cmx": for-pack(Containers_misc)
|
|
||||||
"misc/bencodeOnDisk.cmx": for-pack(Containers_misc)
|
"misc/bencodeOnDisk.cmx": for-pack(Containers_misc)
|
||||||
"misc/tTree.cmx": for-pack(Containers_misc)
|
"misc/tTree.cmx": for-pack(Containers_misc)
|
||||||
|
"misc/printBox.cmx": for-pack(Containers_misc)
|
||||||
"misc/hGraph.cmx": for-pack(Containers_misc)
|
"misc/hGraph.cmx": for-pack(Containers_misc)
|
||||||
"misc/automaton.cmx": for-pack(Containers_misc)
|
"misc/automaton.cmx": for-pack(Containers_misc)
|
||||||
"misc/conv.cmx": for-pack(Containers_misc)
|
"misc/conv.cmx": for-pack(Containers_misc)
|
||||||
|
|
@ -58,6 +58,7 @@
|
||||||
"misc/ratTerm.cmx": for-pack(Containers_misc)
|
"misc/ratTerm.cmx": for-pack(Containers_misc)
|
||||||
"misc/cause.cmx": for-pack(Containers_misc)
|
"misc/cause.cmx": for-pack(Containers_misc)
|
||||||
"misc/AVL.cmx": for-pack(Containers_misc)
|
"misc/AVL.cmx": for-pack(Containers_misc)
|
||||||
|
"misc/parseReact.cmx": for-pack(Containers_misc)
|
||||||
<misc/*.ml{,i}>: package(unix)
|
<misc/*.ml{,i}>: package(unix)
|
||||||
<misc/*.ml{,i}>: use_containers
|
<misc/*.ml{,i}>: use_containers
|
||||||
# Library containers_thread
|
# Library containers_thread
|
||||||
|
|
@ -90,6 +91,9 @@
|
||||||
# Executable bench_conv
|
# Executable bench_conv
|
||||||
"tests/bench_conv.native": package(benchmark)
|
"tests/bench_conv.native": package(benchmark)
|
||||||
"tests/bench_conv.native": use_containers
|
"tests/bench_conv.native": use_containers
|
||||||
|
# Executable bench_batch
|
||||||
|
"tests/bench_batch.native": package(benchmark)
|
||||||
|
"tests/bench_batch.native": use_containers
|
||||||
<tests/*.ml{,i}>: package(benchmark)
|
<tests/*.ml{,i}>: package(benchmark)
|
||||||
# Executable test_levenshtein
|
# Executable test_levenshtein
|
||||||
"tests/test_levenshtein.native": package(qcheck)
|
"tests/test_levenshtein.native": package(qcheck)
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
# OASIS_START
|
# OASIS_START
|
||||||
# DO NOT EDIT (digest: a3c9e3f1dda45411bdcd3558229477d6)
|
# DO NOT EDIT (digest: 1d7d103e81e0ed014552a439c48db02a)
|
||||||
core/CCVector
|
core/CCVector
|
||||||
core/CCDeque
|
core/CCDeque
|
||||||
core/CCGen
|
core/CCGen
|
||||||
|
|
@ -10,6 +10,7 @@ core/CCMultiSet
|
||||||
core/CCBV
|
core/CCBV
|
||||||
core/CCPrint
|
core/CCPrint
|
||||||
core/CCPersistentHashtbl
|
core/CCPersistentHashtbl
|
||||||
|
core/CCError
|
||||||
core/CCLeftistheap
|
core/CCLeftistheap
|
||||||
core/CCList
|
core/CCList
|
||||||
core/CCOpt
|
core/CCOpt
|
||||||
|
|
@ -20,6 +21,9 @@ core/CCKList
|
||||||
core/CCInt
|
core/CCInt
|
||||||
core/CCBool
|
core/CCBool
|
||||||
core/CCArray
|
core/CCArray
|
||||||
|
core/CCBatch
|
||||||
|
core/CCOrd
|
||||||
|
core/CCLinq
|
||||||
string/KMP
|
string/KMP
|
||||||
string/CCString
|
string/CCString
|
||||||
string/Levenshtein
|
string/Levenshtein
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
# OASIS_START
|
# OASIS_START
|
||||||
# DO NOT EDIT (digest: 74dad42b966e38504c0f3f573d675dbd)
|
# DO NOT EDIT (digest: 1f89029bfd9400c761d71802552f321f)
|
||||||
misc/Cache
|
misc/Cache
|
||||||
misc/FHashtbl
|
misc/FHashtbl
|
||||||
misc/FlatHashtbl
|
misc/FlatHashtbl
|
||||||
|
|
@ -22,9 +22,9 @@ misc/SmallSet
|
||||||
misc/AbsSet
|
misc/AbsSet
|
||||||
misc/CSM
|
misc/CSM
|
||||||
misc/ActionMan
|
misc/ActionMan
|
||||||
misc/QCheck
|
|
||||||
misc/BencodeOnDisk
|
misc/BencodeOnDisk
|
||||||
misc/TTree
|
misc/TTree
|
||||||
|
misc/PrintBox
|
||||||
misc/HGraph
|
misc/HGraph
|
||||||
misc/Automaton
|
misc/Automaton
|
||||||
misc/Conv
|
misc/Conv
|
||||||
|
|
@ -36,4 +36,5 @@ misc/BencodeStream
|
||||||
misc/RatTerm
|
misc/RatTerm
|
||||||
misc/Cause
|
misc/Cause
|
||||||
misc/AVL
|
misc/AVL
|
||||||
|
misc/ParseReact
|
||||||
# OASIS_STOP
|
# OASIS_STOP
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
# OASIS_START
|
# OASIS_START
|
||||||
# DO NOT EDIT (digest: f49e5e2f09b6b12af7e6ae013126d35f)
|
# DO NOT EDIT (digest: de6b01e36860e123951867ef27ec6b0b)
|
||||||
CCVector
|
CCVector
|
||||||
CCDeque
|
CCDeque
|
||||||
CCGen
|
CCGen
|
||||||
|
|
@ -10,6 +10,7 @@ CCMultiSet
|
||||||
CCBV
|
CCBV
|
||||||
CCPrint
|
CCPrint
|
||||||
CCPersistentHashtbl
|
CCPersistentHashtbl
|
||||||
|
CCError
|
||||||
CCLeftistheap
|
CCLeftistheap
|
||||||
CCList
|
CCList
|
||||||
CCOpt
|
CCOpt
|
||||||
|
|
@ -20,4 +21,7 @@ CCKList
|
||||||
CCInt
|
CCInt
|
||||||
CCBool
|
CCBool
|
||||||
CCArray
|
CCArray
|
||||||
|
CCBatch
|
||||||
|
CCOrd
|
||||||
|
CCLinq
|
||||||
# OASIS_STOP
|
# OASIS_STOP
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
# OASIS_START
|
# OASIS_START
|
||||||
# DO NOT EDIT (digest: f49e5e2f09b6b12af7e6ae013126d35f)
|
# DO NOT EDIT (digest: de6b01e36860e123951867ef27ec6b0b)
|
||||||
CCVector
|
CCVector
|
||||||
CCDeque
|
CCDeque
|
||||||
CCGen
|
CCGen
|
||||||
|
|
@ -10,6 +10,7 @@ CCMultiSet
|
||||||
CCBV
|
CCBV
|
||||||
CCPrint
|
CCPrint
|
||||||
CCPersistentHashtbl
|
CCPersistentHashtbl
|
||||||
|
CCError
|
||||||
CCLeftistheap
|
CCLeftistheap
|
||||||
CCList
|
CCList
|
||||||
CCOpt
|
CCOpt
|
||||||
|
|
@ -20,4 +21,7 @@ CCKList
|
||||||
CCInt
|
CCInt
|
||||||
CCBool
|
CCBool
|
||||||
CCArray
|
CCArray
|
||||||
|
CCBatch
|
||||||
|
CCOrd
|
||||||
|
CCLinq
|
||||||
# OASIS_STOP
|
# OASIS_STOP
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
# OASIS_START
|
# OASIS_START
|
||||||
# DO NOT EDIT (digest: 172cd60f4b40396909554f6b5d21df63)
|
# DO NOT EDIT (digest: 111de4742258ca90b33c540e554c3882)
|
||||||
Cache
|
Cache
|
||||||
FHashtbl
|
FHashtbl
|
||||||
FlatHashtbl
|
FlatHashtbl
|
||||||
|
|
@ -22,9 +22,9 @@ SmallSet
|
||||||
AbsSet
|
AbsSet
|
||||||
CSM
|
CSM
|
||||||
ActionMan
|
ActionMan
|
||||||
QCheck
|
|
||||||
BencodeOnDisk
|
BencodeOnDisk
|
||||||
TTree
|
TTree
|
||||||
|
PrintBox
|
||||||
HGraph
|
HGraph
|
||||||
Automaton
|
Automaton
|
||||||
Conv
|
Conv
|
||||||
|
|
@ -36,4 +36,5 @@ BencodeStream
|
||||||
RatTerm
|
RatTerm
|
||||||
Cause
|
Cause
|
||||||
AVL
|
AVL
|
||||||
|
ParseReact
|
||||||
# OASIS_STOP
|
# OASIS_STOP
|
||||||
|
|
|
||||||
48
setup.ml
48
setup.ml
|
|
@ -1,7 +1,7 @@
|
||||||
(* setup.ml generated for the first time by OASIS v0.4.4 *)
|
(* setup.ml generated for the first time by OASIS v0.4.4 *)
|
||||||
|
|
||||||
(* OASIS_START *)
|
(* OASIS_START *)
|
||||||
(* DO NOT EDIT (digest: 78058340d0a14266a99c9216440367bb) *)
|
(* DO NOT EDIT (digest: a8bc1c98b357b6dec44c619b4237f5db) *)
|
||||||
(*
|
(*
|
||||||
Regenerated by OASIS v0.4.4
|
Regenerated by OASIS v0.4.4
|
||||||
Visit http://oasis.forge.ocamlcore.org for more information and
|
Visit http://oasis.forge.ocamlcore.org for more information and
|
||||||
|
|
@ -6993,6 +6993,7 @@ let setup_t =
|
||||||
"CCBV";
|
"CCBV";
|
||||||
"CCPrint";
|
"CCPrint";
|
||||||
"CCPersistentHashtbl";
|
"CCPersistentHashtbl";
|
||||||
|
"CCError";
|
||||||
"CCLeftistheap";
|
"CCLeftistheap";
|
||||||
"CCList";
|
"CCList";
|
||||||
"CCOpt";
|
"CCOpt";
|
||||||
|
|
@ -7002,7 +7003,10 @@ let setup_t =
|
||||||
"CCKList";
|
"CCKList";
|
||||||
"CCInt";
|
"CCInt";
|
||||||
"CCBool";
|
"CCBool";
|
||||||
"CCArray"
|
"CCArray";
|
||||||
|
"CCBatch";
|
||||||
|
"CCOrd";
|
||||||
|
"CCLinq"
|
||||||
];
|
];
|
||||||
lib_pack = false;
|
lib_pack = false;
|
||||||
lib_internal_modules = [];
|
lib_internal_modules = [];
|
||||||
|
|
@ -7091,9 +7095,9 @@ let setup_t =
|
||||||
"AbsSet";
|
"AbsSet";
|
||||||
"CSM";
|
"CSM";
|
||||||
"ActionMan";
|
"ActionMan";
|
||||||
"QCheck";
|
|
||||||
"BencodeOnDisk";
|
"BencodeOnDisk";
|
||||||
"TTree";
|
"TTree";
|
||||||
|
"PrintBox";
|
||||||
"HGraph";
|
"HGraph";
|
||||||
"Automaton";
|
"Automaton";
|
||||||
"Conv";
|
"Conv";
|
||||||
|
|
@ -7104,7 +7108,8 @@ let setup_t =
|
||||||
"BencodeStream";
|
"BencodeStream";
|
||||||
"RatTerm";
|
"RatTerm";
|
||||||
"Cause";
|
"Cause";
|
||||||
"AVL"
|
"AVL";
|
||||||
|
"ParseReact"
|
||||||
];
|
];
|
||||||
lib_pack = true;
|
lib_pack = true;
|
||||||
lib_internal_modules = [];
|
lib_internal_modules = [];
|
||||||
|
|
@ -7364,6 +7369,37 @@ let setup_t =
|
||||||
bs_nativeopt = [(OASISExpr.EBool true, [])]
|
bs_nativeopt = [(OASISExpr.EBool true, [])]
|
||||||
},
|
},
|
||||||
{exec_custom = false; exec_main_is = "bench_conv.ml"});
|
{exec_custom = false; exec_main_is = "bench_conv.ml"});
|
||||||
|
Executable
|
||||||
|
({
|
||||||
|
cs_name = "bench_batch";
|
||||||
|
cs_data = PropList.Data.create ();
|
||||||
|
cs_plugin_data = []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
bs_build =
|
||||||
|
[
|
||||||
|
(OASISExpr.EBool true, false);
|
||||||
|
(OASISExpr.EFlag "bench", true)
|
||||||
|
];
|
||||||
|
bs_install = [(OASISExpr.EBool true, false)];
|
||||||
|
bs_path = "tests/";
|
||||||
|
bs_compiled_object = Native;
|
||||||
|
bs_build_depends =
|
||||||
|
[
|
||||||
|
InternalLibrary "containers";
|
||||||
|
FindlibPackage ("benchmark", None)
|
||||||
|
];
|
||||||
|
bs_build_tools = [ExternalTool "ocamlbuild"];
|
||||||
|
bs_c_sources = [];
|
||||||
|
bs_data_files = [];
|
||||||
|
bs_ccopt = [(OASISExpr.EBool true, [])];
|
||||||
|
bs_cclib = [(OASISExpr.EBool true, [])];
|
||||||
|
bs_dlllib = [(OASISExpr.EBool true, [])];
|
||||||
|
bs_dllpath = [(OASISExpr.EBool true, [])];
|
||||||
|
bs_byteopt = [(OASISExpr.EBool true, [])];
|
||||||
|
bs_nativeopt = [(OASISExpr.EBool true, [])]
|
||||||
|
},
|
||||||
|
{exec_custom = false; exec_main_is = "bench_batch.ml"});
|
||||||
Executable
|
Executable
|
||||||
({
|
({
|
||||||
cs_name = "test_levenshtein";
|
cs_name = "test_levenshtein";
|
||||||
|
|
@ -7591,7 +7627,7 @@ let setup_t =
|
||||||
};
|
};
|
||||||
oasis_fn = Some "_oasis";
|
oasis_fn = Some "_oasis";
|
||||||
oasis_version = "0.4.4";
|
oasis_version = "0.4.4";
|
||||||
oasis_digest = Some "&\163\185\217A\246D\015Z\230\255\177X*\186\157";
|
oasis_digest = Some "?<\169\199O.)\139\240\184o\194\241M4\232";
|
||||||
oasis_exec = None;
|
oasis_exec = None;
|
||||||
oasis_setup_args = [];
|
oasis_setup_args = [];
|
||||||
setup_update = false
|
setup_update = false
|
||||||
|
|
@ -7599,6 +7635,6 @@ let setup_t =
|
||||||
|
|
||||||
let setup () = BaseSetup.setup setup_t;;
|
let setup () = BaseSetup.setup setup_t;;
|
||||||
|
|
||||||
# 7603 "setup.ml"
|
# 7639 "setup.ml"
|
||||||
(* OASIS_STOP *)
|
(* OASIS_STOP *)
|
||||||
let () = setup ();;
|
let () = setup ();;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue