diff options
author | polwex <polwex@sortug.com> | 2025-10-05 21:56:51 +0700 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2025-10-05 21:56:51 +0700 |
commit | fcedfddf00b3f994e4f4e40332ac7fc192c63244 (patch) | |
tree | 51d38e62c7bdfcc5f9a5e9435fe820c93cfc9a3d /ocaml/dune |
claude is gud
Diffstat (limited to 'ocaml/dune')
-rw-r--r-- | ocaml/dune | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ocaml/dune b/ocaml/dune new file mode 100644 index 0000000..3943b7b --- /dev/null +++ b/ocaml/dune @@ -0,0 +1,19 @@ +(library + (name nock_lib) + (modules noun nock bitstream serial) + (libraries zarith)) + +(executable + (name test_nock) + (modules test_nock) + (libraries nock_lib zarith)) + +(executable + (name test_serial) + (modules test_serial) + (libraries nock_lib zarith)) + +(executable + (name bench_nock) + (modules bench_nock) + (libraries nock_lib zarith unix)) |