This commit is contained in:
swrup 2025-11-11 02:07:51 +01:00
parent aa2ff7b2f0
commit 2f3113f55d
11742 changed files with 1223940 additions and 0 deletions

View file

@ -0,0 +1,15 @@
#!/usr/bin/env ocaml
#use "topfind"
#require "topkg"
open Topkg
let () =
Pkg.describe "bos" @@ fun c ->
Ok [ Pkg.mllib ~api:["Bos"] "src/bos.mllib";
Pkg.mllib "src/bos_setup.mllib";
Pkg.mllib ~api:[] "src/bos_top.mllib";
Pkg.lib "src/bos_top_init.ml";
Pkg.test "test/test";
Pkg.test ~run:false "test/test_arg";
Pkg.test ~run:false "test/test_arg_pos";
Pkg.test ~run:false "test/watch"; ]