Skip to content

Commit

Permalink
UCharTbl
Browse files Browse the repository at this point in the history
  • Loading branch information
yoriyuki committed Jun 9, 2014
1 parent ab594e2 commit 0be16ff
Show file tree
Hide file tree
Showing 7 changed files with 509 additions and 13 deletions.
3 changes: 2 additions & 1 deletion INSTALL.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(* OASIS_START *)
(* DO NOT EDIT (digest: d956617c289288b15fb2cc1647b91cf4) *)
(* DO NOT EDIT (digest: 81bc569ffe611256187437348c13708d) *)

This is the INSTALL file for the ucorelib distribution.

Expand All @@ -14,6 +14,7 @@ In order to compile this package, you will need:
* ocaml
* findlib
* batteries (>= 2.1) for library ucorelib
* bitv (>= 1.1) for library ucorelib
* oUnit for executable test

Installing
Expand Down
2 changes: 1 addition & 1 deletion _oasis
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Library ucorelib
Modules: UCoreLib
Build: true
Install: true
BuildDepends: batteries (>= 2.1)
BuildDepends: batteries (>= 2.1), bitv (>= 1.1)

Executable test
BuildTools: ocamlbuild
Expand Down
5 changes: 4 additions & 1 deletion _tags
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# OASIS_START
# DO NOT EDIT (digest: 3dc61bc51cc88c87279ef1317a6fcc4c)
# DO NOT EDIT (digest: 44230de59ce40bd80a48cc55e049191e)
# Ignore VCS directories, you can use the same kind of rule outside
# OASIS_START/STOP if you want to exclude directories that contains
# useless stuff for the build process
Expand All @@ -16,11 +16,14 @@
# Library ucorelib
"src/ucorelib.cmxs": use_ucorelib
<src/*.ml{,i}>: pkg_batteries
<src/*.ml{,i}>: pkg_bitv
# Executable test
"test/test.byte": pkg_batteries
"test/test.byte": pkg_bitv
"test/test.byte": pkg_oUnit
"test/test.byte": use_ucorelib
<test/*.ml{,i}>: pkg_batteries
<test/*.ml{,i}>: pkg_bitv
<test/*.ml{,i}>: pkg_oUnit
<test/*.ml{,i}>: use_ucorelib
# OASIS_STOP
11 changes: 7 additions & 4 deletions setup.ml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(* setup.ml generated for the first time by OASIS v0.3.0 *)

(* OASIS_START *)
(* DO NOT EDIT (digest: 65d6cb98b3756fbf599f86ff7eb0d536) *)
(* DO NOT EDIT (digest: c6d7eaf7dda4ac04f97dd1aa1245049d) *)
(*
Regenerated by OASIS v0.4.4
Visit http://oasis.forge.ocamlcore.org for more information and
Expand Down Expand Up @@ -6910,7 +6910,10 @@ let setup_t =
[
FindlibPackage
("batteries",
Some (OASISVersion.VGreaterEqual "2.1"))
Some (OASISVersion.VGreaterEqual "2.1"));
FindlibPackage
("bitv",
Some (OASISVersion.VGreaterEqual "1.1"))
];
bs_build_tools = [ExternalTool "ocamlbuild"];
bs_c_sources = [];
Expand Down Expand Up @@ -7019,14 +7022,14 @@ let setup_t =
};
oasis_fn = Some "_oasis";
oasis_version = "0.4.4";
oasis_digest = Some "G[\191\192\140.\198\223\130=\238/\206\001\175\181";
oasis_digest = Some "â\155\131\012àsaÌÒÚ+^\140\023";
oasis_exec = None;
oasis_setup_args = [];
setup_update = false
};;

let setup () = BaseSetup.setup setup_t;;

# 7031 "setup.ml"
# 7034 "setup.ml"
(* OASIS_STOP *)
let () = setup ();;
4 changes: 2 additions & 2 deletions src/META
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# OASIS_START
# DO NOT EDIT (digest: 198216766602dcc08f1b2a191d2f0686)
# DO NOT EDIT (digest: 29b817078e2897c9b458828639658ec8)
version = "0.1.0"
description = "A light weight Unicode library for OCaml"
requires = "batteries"
requires = "batteries bitv"
archive(byte) = "ucorelib.cma"
archive(byte, plugin) = "ucorelib.cma"
archive(native) = "ucorelib.cmxa"
Expand Down
Loading

0 comments on commit 0be16ff

Please sign in to comment.