File: pkg.ml

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

let () =
  Pkg.describe "jsonm" @@ fun c ->
  Ok [ Pkg.mllib "src/jsonm.mllib";
       Pkg.bin "test/jsontrip";
       Pkg.doc "test/examples.ml";
       Pkg.doc "test/jtree.ml";
       Pkg.doc "doc/index.mld" ~dst:"odoc-pages/index.mld";
       Pkg.test "test/test";
       Pkg.test ~run:false "test/examples";
       Pkg.test ~run:false "test/jtree"; ]