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