fix something
This commit is contained in:
parent
cd24b68d23
commit
861be325a1
4 changed files with 6 additions and 4 deletions
4
Makefile
4
Makefile
|
@ -1,5 +1,5 @@
|
|||
doc : docs stringCodepointSplitter.ml
|
||||
ocamlfind ocamldoc -package uutf -html -charset=utf-8 stringCodepointSplitter.ml -d docs
|
||||
doc : docs lib/stringCodepointSplitter.ml
|
||||
ocamlfind ocamldoc -package uutf -package findlib -html -charset=utf-8 lib/stringCodepointSplitter.ml -d docs
|
||||
|
||||
docs :
|
||||
mkdir docs
|
|
@ -21,7 +21,7 @@
|
|||
(description "Split a string to a list of strings of a character by the unicode codepoint.
|
||||
|
||||
It requires module Uutf.")
|
||||
(depends ocaml dune uutf)
|
||||
(depends ocaml findlib dune uutf)
|
||||
(tags (string utf8)))
|
||||
|
||||
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
open Stdlib
|
||||
|
||||
(**
|
||||
The Module needs [Uutf] Module.
|
||||
|
||||
|
|
|
@ -15,7 +15,8 @@ homepage: "https://github.com/yoxem/stringCodepointSplitter"
|
|||
doc: "https://github.com/Yoxem/stringCodepointSplitter/tree/main/docs"
|
||||
bug-reports: "https://github.com/Yoxem/stringCodepointSplitter/issues"
|
||||
depends: [
|
||||
"ocaml>=4.14"
|
||||
"ocaml"
|
||||
"findlib"
|
||||
"dune" {>= "3.9"}
|
||||
"uutf"
|
||||
"odoc" {with-doc}
|
||||
|
|
Loading…
Reference in a new issue