File: pkg.ml

package info (click to toggle)
xmlm 1.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 228 kB
  • sloc: ml: 1,902; makefile: 33
file content (16 lines) | stat: -rwxr-xr-x 429 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env ocaml
#use "topfind"
#require "topkg"
open Topkg

let () =
  Pkg.describe "xmlm" @@ fun c ->
  Ok [ Pkg.mllib "src/xmlm.mllib";
       Pkg.bin "test/xmltrip";
       Pkg.test "test/examples";
       Pkg.test "test/test";
       Pkg.test "test/xhtml";
       Pkg.test "test/test_tree";
       Pkg.doc "doc/index.mld" ~dst:"odoc-pages/index.mld";
       Pkg.doc "test/examples.ml";
       Pkg.doc "test/xhtml.ml"; ]